Browse Source

Refactor service

feature/export_comptable
Fab 4 years ago
parent
commit
0b52918c21
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      ShopBundle/Services/UtilsManager.php

+ 3
- 3
ShopBundle/Services/UtilsManager.php View File

@@ -48,7 +48,7 @@ class UtilsManager
return $this->utils ;
}

public function getUserUtils(): UserUtilsInterface
public function getUserUtils(): UserUtils
{
return $this->userUtils ;
}
@@ -78,12 +78,12 @@ class UtilsManager
return $this->deliveryUtils ;
}

public function getCreditUtils(): CreditUtilsInterface
public function getCreditUtils(): CreditUtils
{
return $this->creditUtils ;
}

public function getDocumentUtils(): DocumentUtilsInterface
public function getDocumentUtils(): DocumentUtils
{
return $this->documentUtils ;
}

Loading…
Cancel
Save