Caffeinated\Modules\Contracts\Repository::enable PHP Method

enable() public method

Enables the specified module.
public enable ( string $slug ) : boolean
$slug string
return boolean
    public function enable($slug);

Usage Example

コード例 #1
0
ファイル: Modules.php プロジェクト: nickurt/modules
 /**
  * Enables the specified module.
  *
  * @param string $slug
  *
  * @return bool
  */
 public function enable($slug)
 {
     return $this->repository->enable($slug);
 }