haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
proc
/
self
/
cwd
/
wp-content
/
plugins
/
admin-columns-pro
/
admin-columns
/
classes
/
Filename :
CollectionFormatter.php
back
Copy
<?php declare(strict_types=1); namespace AC; use AC\Exception\ValueNotFoundException; use AC\Type\Value; use AC\Type\ValueCollection; interface CollectionFormatter { /** * @throws ValueNotFoundException */ public function format(ValueCollection $collection): Value; }