Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
8 | public function createCommand($commandName, $apiKey, $format, $data = []) |
||
9 | { |
||
10 | $serializerClass = 'DexBarrett\\ClockworkSms\\Serializers\\' . |
||
11 | ucfirst($format) . 'Serializer'; |
||
12 | |||
13 | $commandClass = __NAMESPACE__ . '\\' . ucfirst($commandName) . 'Command'; |
||
14 | return new $commandClass($apiKey, new $serializerClass(new BuilderFactory), $data); |
||
15 | } |
||
16 | } |
||
17 |