Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
livewire
/
livewire
/
src
/
Exceptions
:
PublicPropertyTypeNotAllowedException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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." ); } }