PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
livewire
/
livewire
/
src
/
Features
/
SupportLifecycleHooks
/
Editing: DirectlyCallingLifecycleHooksNotAllowedException.php
<?php namespace Livewire\Features\SupportLifecycleHooks; use Livewire\Exceptions\BypassViewHandler; class DirectlyCallingLifecycleHooksNotAllowedException extends \Exception { use BypassViewHandler; public function __construct($method, $component) { parent::__construct( "Unable to call lifecycle method [{$method}] directly on component: [{$component}]" ); } }
SAVE
CANCEL