Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
<?php | |
declare(strict_types = 1); | |
namespace Siesta\Contract; | |
interface ArraySerializable | |
{ | |
/** | |
* @param array|null $data | |
* | |
* @return void | |
*/ | |
public function fromArray(array $data); | |
/** | |
* @return void | |
*/ | |
public function toArray(); | |
} |