Ejemplo n.º 1
0
 public function execute($id)
 {
     $app = \App::getInstance();
     $em = new \Archive\Port\Adaptor\Persistence\PDO\LinkEntityManager();
     if ($link = $em->findById($id)) {
         $link = $em->delete($link);
         return $link;
     } else {
         throw new \Exception("Link {$id} not found", 404);
     }
 }