Barryvdh\Debugbar\LaravelDebugbar::enable PHP 메소드

enable() 공개 메소드

Enable the Debugbar and boot, if not already booted.
public enable ( )
    public function enable()
    {
        $this->enabled = true;
        if (!$this->booted) {
            $this->boot();
        }
    }

Usage Example

예제 #1
0
 /**
  * Enable the Debugbar and boot, if not already booted.
  *
  * @static 
  */
 public static function enable()
 {
     return \Barryvdh\Debugbar\LaravelDebugbar::enable();
 }