File "NonPublicComponentMethodCall.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Exceptions/NonPublicComponentMethodCall.php
File size: 252 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Livewire\Exceptions;
class NonPublicComponentMethodCall extends \Exception
{
use BypassViewHandler;
public function __construct($method)
{
parent::__construct('Component method not found: ['.$method.']');
}
}