/**
  * Disable the laravel-shortcodes
  *
  * @return \Webwizo\Shortcodes\Shortcode
  */
 public function disable()
 {
     $this->compiler->disable();
     return $this;
 }
Beispiel #2
0
 /**
  * Disable the shortcodes
  */
 public function withoutShortcodes()
 {
     $this->shortcode->disable();
     return $this;
 }