OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
/
tests
/
Fixtures
/
PHP
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:54 AM
rwxr-xr-x
📄
AbstractKeyword.php
552 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
AnonymousFunctions.php
1.72 KB
08/07/2024 04:34:53 AM
rw-r--r--
📁
Enums
-
08/07/2024 04:35:09 AM
rwxr-xr-x
📁
Inheritance
-
08/07/2024 04:35:09 AM
rwxr-xr-x
📄
Label.php
315 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
MultipleFunctions.php
547 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
Php8AttrMix.php
396 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
Php8NamedArguments.php
1004 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
Php8PromotedProperties.php
481 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
References.php
300 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
ReferencesEnum.php
3.36 KB
08/07/2024 04:34:53 AM
rw-r--r--
📄
namespaces1.php
135 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
namespaces2.php
163 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
php7.php
749 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
php8.php
435 bytes
08/07/2024 04:34:53 AM
rw-r--r--
Editing: php7.php
Close
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Tests\Fixtures\PHP; use PHPUnit\Framework\TestCase; $a = new class { public function foo() { } }; $b = new class() { public function bar() { } }; $c = new class extends \stdClass { public function baz() { } }; $d = new class() extends \stdClass { public function boz() { } }; new class implements i1 { public function biz() { } }; new class() implements i1 { public function buz() { } }; $e = new class() extends \stdClass { public function fuz() { } }; $f = new class() implements i2 { public function fuu() { } }; function deng() { } $foo = TestCase::class;