haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
proc
/
self
/
cwd
/
wp-content
/
plugins
/
admin-columns-pro
/
classes
/
Storage
/
Filename :
DecoderFactory.php
back
Copy
<?php declare(strict_types=1); namespace ACP\Storage; interface DecoderFactory { public function create(array $encoded_data): Decoder; public function supports(array $encoded_data): bool; }