1
0
Fork 0
mirror of synced 2024-05-20 04:32:37 +12:00

Docker library psr issues fix

This commit is contained in:
kaczmarekdaniel 2021-10-06 15:39:14 +02:00
parent 026efb8c25
commit 8531eddeb4
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ class Service
$ports = (isset($this->service['ports']) && is_array($this->service['ports'])) ? $this->service['ports'] : [];
$this->service['ports'] = [];
array_walk($ports, function(&$value, $key) {
array_walk($ports, function (&$value, $key) {
$split = explode(':', $value);
$this->service['ports'][
(isset($split[0])) ? $split[0] : ''

View file

@ -54,7 +54,7 @@ class Env
/**
* Get All Vars
*
*
* @return array
*/
public function list(): array