예제 #1
0
 public function bootstrap($autoloader = null)
 {
     parent::bootstrap($autoloader);
     $this->on('app.init', function ($application) {
         Record::setDb($application->services['database']);
     });
 }
예제 #2
0
<?php

require_once __DIR__ . '/../vendor/autoload.php';
use Popcorn\Pop;
$pop = new Pop();
$pop->get('/', ['controller' => 'Skeleton\\Controller\\IndexController', 'action' => 'index']);
$pop->get('/hello[/:name]', ['controller' => 'Skeleton\\Controller\\IndexController', 'action' => 'hello']);
$pop->get('*', ['controller' => 'Skeleton\\Controller\\IndexController', 'action' => 'error']);
$pop->run();