1 | <?php |
||
15 | class Factory |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * @param string $json |
||
20 | * |
||
21 | * @return AbstractMessage |
||
22 | * @throws UnknownRequestException |
||
23 | * @throws MalformedRequestException |
||
24 | */ |
||
25 | public static function factory($json) |
||
43 | |||
44 | |||
45 | /** |
||
46 | * Don't allow instantiation |
||
47 | */ |
||
48 | private function __construct() |
||
52 | |||
53 | } |
||
54 |