haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
proc
/
thread-self
/
cwd
/
wp-content
/
plugins
/
admin-columns-pro
/
classes
/
Filename :
AddonCollection.php
back
Copy
<?php declare(strict_types=1); namespace ACP; use AC\Collection; final class AddonCollection extends Collection { public function add(Addon $addon): void { $this->data[] = $addon; } public function current(): Addon { return current($this->data); } }