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
:
ObjectPrybar.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Livewire; use ReflectionClass; #[\AllowDynamicProperties] class ObjectPrybar { protected $obj; public function __construct($obj) { $this->obj = $obj; $this->reflected = new ReflectionClass($obj); } public function getProperty($name) { $property = $this->reflected->getProperty($name); $property->setAccessible(true); return $property->getValue($this->obj); } public function setProperty($name, $value) { $property = $this->reflected->getProperty($name); $property->setAccessible(true); $property->setValue($this->obj, $value); } }