1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22:
<?php
/*
* Copyright 2017 Jack Sleight <http://jacksleight.com/>
* This source file is subject to the MIT license that is bundled with this package in the file LICENCE.
*/
namespace Coast\App;
interface Access
{
public function app(\Coast\App $app);
public function __get($name);
public function __set($name, $value);
public function __isset($name);
public function __unset($name);
public function __call($name, array $args);
}