Fenos\Notifynder\Contracts\CategoryDB::deleteByName PHP Method

deleteByName() public method

Delete category by name.
public deleteByName ( $name ) : mixed
$name
return mixed
    public function deleteByName($name);

Usage Example

Beispiel #1
0
 /**
  * Delete category by name.
  *
  * @param $name
  * @return mixed
  */
 public function deleteByName($name)
 {
     return $this->categoryRepo->deleteByName($name);
 }
All Usage Examples Of Fenos\Notifynder\Contracts\CategoryDB::deleteByName