관리-도구
편집 파일: RequestObject.php.tar
home/tattooscyy/www/app/Libs/Sdk/Communication/RequestObject.php 0000644 00000000522 15224717641 0021041 0 ustar 00 <?php namespace App\Libs\Sdk\Communication; use Exception; /** * Class RequestObject * * @package OnlinePayments\Sdk\Communication */ abstract class RequestObject { public function __set($name, $value) { throw new Exception('Cannot add new property ' . $name . ' to instances of class ' . get_class($this)); } }