File "CannotUseReservedLivewireComponentProperties.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Exceptions/CannotUseReservedLivewireComponentProperties.php
File size: 375 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Livewire\Exceptions;
class CannotUseReservedLivewireComponentProperties extends \Exception
{
use BypassViewHandler;
public function __construct($propertyName, $componentName)
{
parent::__construct(
"Public property [{$propertyName}] on [{$componentName}] component is reserved for internal Livewire use."
);
}
}