9 lines
180 B
PHP
9 lines
180 B
PHP
|
<?php
|
||
|
interface IEntityRetriever
|
||
|
{
|
||
|
public function __construct(IJob $job);
|
||
|
public function tryRetrieve();
|
||
|
public function retrieve();
|
||
|
public function getRequiredArguments();
|
||
|
}
|