eZ\Publish\Core\Persistence\Legacy\Content\UrlWildcard\Gateway::deleteUrlWildcard PHP Méthode

deleteUrlWildcard() abstract public méthode

Deletes the UrlWildcard with given $id.
abstract public deleteUrlWildcard ( mixed $id )
$id mixed
    public abstract function deleteUrlWildcard($id);

Usage Example

 /**
  * Deletes the UrlWildcard with given $id.
  *
  * @param mixed $id
  */
 public function deleteUrlWildcard($id)
 {
     try {
         return $this->innerGateway->deleteUrlWildcard($id);
     } catch (DBALException $e) {
         throw new \RuntimeException('Database error', 0, $e);
     } catch (PDOException $e) {
         throw new \RuntimeException('Database error', 0, $e);
     }
 }
All Usage Examples Of eZ\Publish\Core\Persistence\Legacy\Content\UrlWildcard\Gateway::deleteUrlWildcard