Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/vendor/wikimedia/remex-html/src/PropGuard.php
Ðазад
<?php namespace Wikimedia\RemexHtml; use InvalidArgumentException; /** * This is a statically configurable mechanism for preventing the setting of * undeclared properties on objects. The point of it is to detect programmer * errors. */ trait PropGuard { public static $armed = true; public function __set( $name, $value ) { if ( self::$armed ) { throw new InvalidArgumentException( "Property \"$name\" on object of class " . get_class( $this ) . " is undeclared" ); } else { $this->$name = $value; } } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка