fix naming

This commit is contained in:
Yuri Kuznetsov
2021-06-15 21:04:46 +03:00
parent 5f969c703f
commit 532dd78aa8
4 changed files with 6 additions and 6 deletions
@@ -38,7 +38,7 @@ use Espo\Entities\Job as JobEntity;
use DateTimeImmutable;
use RuntimeException;
abstract class AbstractQueueJob implements JobPreperable
abstract class AbstractQueueJob implements JobPreparable
{
protected $queue = null;
@@ -34,7 +34,7 @@ use DateTimeImmutable;
/**
* Can create multiple jobs for different targets according scheduling.
*/
interface JobPreperable extends Job
interface JobPreparable extends Job
{
/**
* Create multiple job records for a scheduled job.
+2 -2
View File
@@ -33,7 +33,7 @@ use Espo\Core\Exceptions\Error;
use Espo\Core\{
Job\JobStatus,
Job\JobPreperable,
Job\JobPreparable,
Job\JobData,
Job\ScheduledJobData,
ServiceFactory,
@@ -44,7 +44,7 @@ use Espo\Core\{
use Throwable;
use DateTimeImmutable;
class CheckEmailAccounts implements JobPreperable
class CheckEmailAccounts implements JobPreparable
{
private $serviceFactory;
+2 -2
View File
@@ -33,7 +33,7 @@ use Espo\Core\Exceptions\Error;
use Espo\Core\{
Job\JobStatus,
Job\JobPreperable,
Job\JobPreparable,
Job\JobData,
Job\ScheduledJobData,
ServiceFactory,
@@ -44,7 +44,7 @@ use Espo\Core\{
use Throwable;
use DateTimeImmutable;
class CheckInboundEmails implements JobPreperable
class CheckInboundEmails implements JobPreparable
{
private $serviceFactory;