android-automate-api/src/App/Factory/Factory.php
2018-01-15 16:36:15 +01:00

24 lines
330 B
PHP

<?php
namespace App\Factory;
use Symfony\Component\HttpFoundation\Request;
/**
* interface Factory.
*
* @author Simon Vieille <simon@deblan.fr>
*/
interface Factory
{
/*
* Validates data.
*
* @param mixed $data
*
* @return bool
*/
public function createByRequest(Request $request);
}