Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
tipuloidea
/
back
/
vendor
/
spatie
/
laravel-data
/
src
/
Exceptions
:
CannotSetComputedValue.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\LaravelData\Exceptions; use Exception; use Spatie\LaravelData\Support\DataProperty; class CannotSetComputedValue extends Exception { public static function create(DataProperty $property): self { return new self("Cannot set property {$property->className}::\${$property->name} because it is a computed property."); } }