haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
proc
/
thread-self
/
cwd
/
wp-content
/
plugins
/
admin-columns-pro
/
classes
/
Editing
/
Filename :
Storage.php
back
Copy
<?php namespace ACP\Editing; use RuntimeException; interface Storage { /** * @return mixed */ public function get(int $id); /** * @param mixed $data * * @throws RuntimeException */ public function update(int $id, $data): bool; }