jmversteeg / contextual
Simple object-oriented contexts
1.3.0
2016-07-04 15:53 UTC
Requires (Dev)
- aura/autoload: ~2.0
- phpunit/phpunit: ~4.6
- satooshi/php-coveralls: 0.6.*
This package is not auto-updated.
Last update: 2025-03-29 20:03:46 UTC
README
Simple object-oriented contexts
Usage
/** * @property boolean $JSON * @property boolean $admin * @property string $type */ class ResponseContext extends \jmversteeg\contextual\Context { // Declare default values with a preceding underscore private $_JSON = false; private $_admin = false; private $_type = 'body'; } $responseContext = new ResponseContext([ 'JSON' => true, 'type' => 'ajax' ]); $responseContext->JSON; // => true $responseContext->admin; // => false $subContext = $responseContext->createSubContext([ 'admin' => true ]); $subContext->JSON; // => true $subContext->admin; // => true
License
MIT © JM Versteeg