File "DirectlyCallingLifecycleHooksNotAllowedException.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Exceptions/DirectlyCallingLifecycleHooksNotAllowedException.php
File size: 346 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Livewire\Exceptions;
class DirectlyCallingLifecycleHooksNotAllowedException extends \Exception
{
use BypassViewHandler;
public function __construct($method, $component)
{
parent::__construct(
"Unable to call lifecycle method [{$method}] directly on component: [{$component}]"
);
}
}