Closed marios88 closed 6 years ago
https://redbeanphp.com/index.php?p=/crud
On the online documentation there is no mention of $alwaysReturnArray of R::dispense()
$alwaysReturnArray
R::dispense()
$twoBooks = R::dispense( 'book', 2 );
i think it should read (or something like that)
$twoBooks = R::dispense( 'book', 2 ); // Returns an array with [2] beans $moreBooks = R::dispense( 'book', $i, TRUE ); // Always returns an array with [$i] beans even if $i=1
updated thanks!
https://redbeanphp.com/index.php?p=/crud
On the online documentation there is no mention of
$alwaysReturnArray
ofR::dispense()
i think it should read (or something like that)