/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
symfony
/
error-handler
/
Tests
/
Fixtures
/
FinalProperty
/
Upload File
HOME
<?php namespace Symfony\Component\ErrorHandler\Tests\Fixtures\FinalProperty; class FinalProperty { /** * @final */ public $pub; /** * @final */ protected $prot; /** * @final */ private $priv; /** * @final */ public $notOverriden; protected $implicitlyFinal; protected string $typedSoNotFinal; protected $deprecated; }