A shorthand library for RedBeanPHP
dev-master
2013-12-27 14:28 UTC
Requires
- gabordemooij/redbean: dev-master
This package is not auto-updated.
Last update: 2025-03-29 17:51:13 UTC
README
A shorthand library for RedBeanPHP
CAUTION: Large parts of this are untested and I'm making stuff up as I go along
An Extended Facade
$type = R::_( 'type' ); // Dispense beans $type = R::_( 'type', $id ); // Load beans R::_( $bean ); // Store beans
A short, fluid helper for finding beans
/** * Search for a project */ $project = R::$x->project->name($name)->find(); /** * Actually, if you can't find one, make one with that data */ $project = R::$x->project->name($name)->find(true);