Skip to content

Commit

Permalink
Added provider interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
juniwalk authored Oct 24, 2023
1 parent 687d847 commit d1b6005
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Interfaces/ParamsProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php declare(strict_types=1);

/**
* @copyright Martin Procházka (c) 2023
* @license MIT License
*/

namespace JuniWalk\Nestor\Interfaces;

interface ParamsProvider
{
public function getRecordParams(): array;
}
13 changes: 13 additions & 0 deletions src/Interfaces/TargetProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php declare(strict_types=1);

/**
* @copyright Martin Procházka (c) 2023
* @license MIT License
*/

namespace JuniWalk\Nestor\Interfaces;

interface TargetProvider
{
public function getRecordTarget(): ?object
}

0 comments on commit d1b6005

Please sign in to comment.