Skip to content

Commit cb38813

Browse files
committed
Merge branch 'fix/lessThan'
2 parents 00c969a + c174bb1 commit cb38813

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Elements/Operators/Less.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Ezweb\Workflow\Elements\Operators;
44

5-
class LessThan extends Operator
5+
class Less extends Operator
66
{
77
public static function getName(): string
88
{

src/Loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function getOperatorProviderConfig(): \Ezweb\Workflow\Providers\Operator
4646
$operatorProvider->register(\Ezweb\Workflow\Elements\Operators\Not::class);
4747
$operatorProvider->register(\Ezweb\Workflow\Elements\Operators\Greater::class);
4848
$operatorProvider->register(\Ezweb\Workflow\Elements\Operators\GreaterOrEqual::class);
49-
$operatorProvider->register(\Ezweb\Workflow\Elements\Operators\LessThan::class);
49+
$operatorProvider->register(\Ezweb\Workflow\Elements\Operators\Less::class);
5050
$operatorProvider->register(\Ezweb\Workflow\Elements\Operators\LessOrEqual::class);
5151
$this->operatorProviderConfig = $operatorProvider;
5252

0 commit comments

Comments
 (0)