%PDF- %PDF-
| Direktori : /var/www/pjc/vendor/livewire/livewire/src/Exceptions/ |
| Current File : /var/www/pjc/vendor/livewire/livewire/src/Exceptions/PublicPropertyTypeNotAllowedException.php |
<?php
namespace Livewire\Exceptions;
class PublicPropertyTypeNotAllowedException extends \Exception
{
use BypassViewHandler;
public function __construct($componentName, $key, $value)
{
parent::__construct(
"Livewire component's [{$componentName}] public property [{$key}] must be of type: [numeric, string, array, null, or boolean].\n".
"Only protected or private properties can be set as other types because JavaScript doesn't need to access them."
);
}
}