-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from neighborhoods/KOJO-201-api-aware-interfaces
KOJO-201 | add API\V1 AwareInterfaces
- Loading branch information
Showing
11 changed files
with
93 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Neighborhoods\Kojo\Api\V1\Job\Scheduler; | ||
|
||
use Neighborhoods\Kojo\Api\V1\Job\SchedulerInterface; | ||
|
||
interface AwareInterface | ||
{ | ||
public function setApiV1JobScheduler(SchedulerInterface $apiV1JobScheduler); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Neighborhoods\Kojo\Api\V1\Job\Scheduler\Factory; | ||
|
||
use Neighborhoods\Kojo\Api\V1\Job\Scheduler\FactoryInterface; | ||
|
||
interface AwareInterface | ||
{ | ||
public function setApiV1JobSchedulerFactory(FactoryInterface $apiV1JobSchedulerFactory); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Neighborhoods\Kojo\Api\V1\Job\Type\Registrar; | ||
|
||
use Neighborhoods\Kojo\Api\V1\Job\Type\RegistrarInterface; | ||
|
||
interface AwareInterface | ||
{ | ||
public function setApiV1JobTypeRegistrar(RegistrarInterface $apiV1JobTypeRegistrar); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Neighborhoods\Kojo\Api\V1\Job\Type\Registrar\Factory; | ||
|
||
use Neighborhoods\Kojo\Api\V1\Job\Type\Registrar\FactoryInterface; | ||
|
||
interface AwareInterface | ||
{ | ||
public function setApiV1JobTypeRegistrarFactory(FactoryInterface $apiV1JobTypeRegistrarFactory); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Neighborhoods\Kojo\Api\V1\Logger; | ||
|
||
use Neighborhoods\Kojo\Api\V1\LoggerInterface; | ||
|
||
interface AwareInterface | ||
{ | ||
public function setApiV1Logger(LoggerInterface $apiV1Logger); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Neighborhoods\Kojo\Api\V1\RDBMS\Connection\Service; | ||
|
||
use Neighborhoods\Kojo\Api\V1\RDBMS\Connection\ServiceInterface; | ||
|
||
interface AwareInterface | ||
{ | ||
public function setApiV1RDBMSConnectionService(ServiceInterface $ApiV1RDBMSConnectionService); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Neighborhoods\Kojo\Api\V1\Worker\Service; | ||
|
||
use Neighborhoods\Kojo\Api\V1\Worker\ServiceInterface; | ||
|
||
interface AwareInterface | ||
{ | ||
public function setApiV1WorkerService(ServiceInterface $apiV1WorkerService); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters