Exemplo n.º 1
0
 function __construct(Application $app)
 {
     $this->app = $app;
     foreach (get_class_methods($this) as $method) {
         if ($this->destroyed) {
             break;
         }
         if (String::startsWith($method, 'test')) {
             $this->{$method}();
         }
     }
 }