Lazer\Classes\Helpers\Config::table PHP Method

table() public static method

public static table ( $name )
    public static function table($name)
    {
        $file = new Config();
        $file->name = $name;
        $file->setType('config');
        return $file;
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  */
 protected function setUp()
 {
     $this->setUpFilesystem();
     $this->object = Config::table('users');
 }
All Usage Examples Of Lazer\Classes\Helpers\Config::table