introduced Service interface to ServiceLocator

This commit is contained in:
Dominik Liebler
2019-08-26 06:40:18 +02:00
parent 92482c29bc
commit be1be3ab64
4 changed files with 17 additions and 36 deletions

View File

@@ -0,0 +1,8 @@
<?php
namespace DesignPatterns\More\ServiceLocator;
interface Service
{
}