for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace FAPI\Fortnox\Model;
/**
* A generic response. Ie for delete actions.
*
* @author Tobias Nyholm <[email protected]>
*/
class ApiResponse implements CreatableFromArray
{
public static function createFromArray(array $data)
return new self();
}