@@ -51,7 +51,6 @@ |
||
51 | 51 | /** |
52 | 52 | * Create a PHP FPM service instance |
53 | 53 | * |
54 | - * @param string $version PHP version |
|
55 | 54 | * @return ShellServiceInterface PHP FPM service |
56 | 55 | */ |
57 | 56 | public static function create($php) |
@@ -87,7 +87,7 @@ |
||
87 | 87 | public function __construct( |
88 | 88 | PersistenceAdapterFactoryInterface $persistenceAdapterFactory, |
89 | 89 | ServiceServiceInterface $serviceService |
90 | - ){ |
|
90 | + ) { |
|
91 | 91 | $this->persistenceAdapterFactory = $persistenceAdapterFactory; |
92 | 92 | $this->serviceService = $serviceService; |
93 | 93 | } |
@@ -75,7 +75,7 @@ |
||
75 | 75 | { |
76 | 76 | $command = Binary::sudo($this->config['service']); |
77 | 77 | array_map( |
78 | - function ($argument) use ($command) { |
|
78 | + function($argument) use ($command) { |
|
79 | 79 | $command->addArg($argument); |
80 | 80 | }, |
81 | 81 | $arguments |