Skip to content

Commit 0acab8d

Browse files
lam0819github-actions[bot]
authored andcommitted
Fix styling
1 parent 6641a2b commit 0acab8d

File tree

5 files changed

+1
-6
lines changed

5 files changed

+1
-6
lines changed

packages/workflow-engine-core/src/Events/WorkflowCancelled.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22

33
namespace SolutionForest\WorkflowEngine\Events;
44

5-
65
class WorkflowCancelled
76
{
8-
97
public function __construct(
108
public readonly string $workflowId,
119
public readonly string $name,

packages/workflow-engine-core/src/Events/WorkflowCompletedEvent.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
class WorkflowCompletedEvent
88
{
9-
109
public WorkflowInstance $instance;
1110

1211
public function __construct(WorkflowInstance $instance)

packages/workflow-engine-core/src/Events/WorkflowFailedEvent.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
class WorkflowFailedEvent
88
{
9-
109
public WorkflowInstance $instance;
1110

1211
public \Exception $exception;

src/Models/WorkflowInstance.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace SolutionForest\WorkflowEngine\Laravel\Models;
44

55
use Illuminate\Database\Eloquent\Model;
6-
use Illuminate\Database\Eloquent\Casts\Attribute;
76
use SolutionForest\WorkflowEngine\Core\WorkflowDefinition;
87
use SolutionForest\WorkflowEngine\Core\WorkflowInstance as CoreWorkflowInstance;
98
use SolutionForest\WorkflowEngine\Core\WorkflowState;

src/Providers/WorkflowEngineServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
use Illuminate\Contracts\Events\Dispatcher as EventDispatcher;
66
use Illuminate\Database\DatabaseManager;
7-
use SolutionForest\WorkflowEngine\Laravel\Commands\LaravelWorkflowEngineCommand;
87
use SolutionForest\WorkflowEngine\Contracts\StorageAdapter;
98
use SolutionForest\WorkflowEngine\Core\WorkflowEngine;
9+
use SolutionForest\WorkflowEngine\Laravel\Commands\LaravelWorkflowEngineCommand;
1010
use SolutionForest\WorkflowEngine\Laravel\Storage\DatabaseStorage;
1111
use Spatie\LaravelPackageTools\Package;
1212
use Spatie\LaravelPackageTools\PackageServiceProvider;

0 commit comments

Comments
 (0)