Файловый менеджер - Редактировать - /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/property-info/PropertyReadInfo.php
Ðазад
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\PropertyInfo; /** * The property read info tells how a property can be read. * * @author Joel Wurtz <jwurtz@jolicode.com> */ final class PropertyReadInfo { public const TYPE_METHOD = 'method'; public const TYPE_PROPERTY = 'property'; public const VISIBILITY_PUBLIC = 'public'; public const VISIBILITY_PROTECTED = 'protected'; public const VISIBILITY_PRIVATE = 'private'; public function __construct( private readonly string $type, private readonly string $name, private readonly string $visibility, private readonly bool $static, private readonly bool $byRef, ) { } /** * Get type of access. */ public function getType(): string { return $this->type; } /** * Get name of the access, which can be a method name or a property name, depending on the type. */ public function getName(): string { return $this->name; } public function getVisibility(): string { return $this->visibility; } public function isStatic(): bool { return $this->static; } /** * Whether this accessor can be accessed by reference. */ public function canBeReference(): bool { return $this->byRef; } }
| ver. 1.1 | |
.
| PHP 8.3.30 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка