File "PublicPropertyTypeNotAllowedException.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Exceptions/PublicPropertyTypeNotAllowedException.php
File size: 516 bytes
MIME-type: text/x-php
Charset: utf-8

<?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."
        );
    }
}