Example #1
0
 static function collection(\PDO $db)
 {
     return Resource::create(self::defaults())->allowedMethods(['GET', 'POST'])->isProcessable(self::validator())->post(function (Context $context) use($db) {
         $id = Todo::create($db, $context->entity);
         $context->setLocation($context->getRequest()->getPathInfo() . "/{$id}");
         $context->newEntity = Todo::fetchOne($db, $id);
     })->handleCreated(function ($context) {
         return $context->newEntity;
     })->handleOk(function (Context $context) use($db) {
         return Todo::fetchAll($db);
     });
 }