- Removed Abstract*Job hierarchy - Introduced EntityRetrievers - Introduced JobPager - Moved files around
8 lines
180 B
PHP
8 lines
180 B
PHP
<?php
|
|
interface IEntityRetriever
|
|
{
|
|
public function __construct(IJob $job);
|
|
public function tryRetrieve();
|
|
public function retrieve();
|
|
public function getRequiredArguments();
|
|
}
|