OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
ramsey
/
collection
/
tests
/
Mock
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:29 AM
rwxr-xr-x
📄
Bar.php
434 bytes
08/12/2024 10:34:29 AM
rw-r--r--
📄
BarCollection.php
306 bytes
08/12/2024 10:34:29 AM
rw-r--r--
📄
Foo.php
96 bytes
08/12/2024 10:34:29 AM
rw-r--r--
📄
FooCollection.php
306 bytes
08/12/2024 10:34:29 AM
rw-r--r--
📄
IntegerArray.php
209 bytes
08/12/2024 10:34:29 AM
rw-r--r--
📄
MyArray.php
218 bytes
08/12/2024 10:34:29 AM
rw-r--r--
📄
Person.php
176 bytes
08/12/2024 10:34:29 AM
rw-r--r--
📄
StringArray.php
211 bytes
08/12/2024 10:34:29 AM
rw-r--r--
Editing: Bar.php
Close
<?php declare(strict_types=1); namespace Ramsey\Collection\Test\Mock; class Bar { public int $id; public string $name; public function __construct(int $id, string $name) { $this->id = $id; $this->name = $name; } public function getId(): int { return $this->id; } public function getName(): string { return $this->name; } }