Example #1
0
File: App.php Project: neatphp/neat
 /**
  * Constructor.
  *
  * @param string $mode
  */
 public function __construct($mode)
 {
     parent::__construct($mode, realpath(__DIR__ . '/..'));
 }
Example #2
0
File: App.php Project: neatphp/neat
 /**
  * Constructor.
  *
  * @param string $mode
  * @param string $webDir
  */
 public function __construct($mode, $webDir)
 {
     parent::__construct($mode, __DIR__, $webDir);
 }