Skip to content

Commit 09b478e

Browse files
committed
Stan fixes
1 parent 0cc0a6d commit 09b478e

12 files changed

+80
-32
lines changed

composer.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1",
19+
"php": "^8.1|^8.2",
2020
"illuminate/contracts": "^10.0",
2121
"spatie/laravel-package-tools": "^1.14.0",
2222
"spatie/laravel-permission": "^5.10"
@@ -36,8 +36,7 @@
3636
"autoload": {
3737
"psr-4": {
3838
"Squarebit\\Workflows\\": "src/",
39-
"Squarebit\\Workflows\\Database\\Factories\\": "database/factories/",
40-
"Domains\\": "domains/"
39+
"Squarebit\\Workflows\\Database\\Factories\\": "database/factories/"
4140
}
4241
},
4342
"autoload-dev": {
@@ -69,6 +68,6 @@
6968
}
7069
}
7170
},
72-
"minimum-stability": "dev",
71+
"minimum-stability": "stable",
7372
"prefer-stable": true
7473
}

config/workflow.php

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// config for Squarebit/Workflows
44

55
return [
6+
/** @phpstan-ignore-next-line */
67
'user_model' => App\Models\User::class,
78
'allow_guests_to_transition' => false,
89
];

database/factories/WorkflowFactory.php

-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ class WorkflowFactory extends Factory
1212
{
1313
protected $model = Workflow::class;
1414

15-
/**
16-
* Define the model's default state.
17-
*
18-
* @return array<string, mixed>
19-
*/
2015
public function definition(): array
2116
{
2217
return [

database/factories/WorkflowStatusFactory.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,12 @@
66
use Squarebit\Workflows\Models\WorkflowStatus;
77

88
/**
9-
* @extends \Illuminate\Database\Eloquent\Factories\Factory<WorkflowStatus>
9+
* @extends Factory<WorkflowStatus>
1010
*/
1111
class WorkflowStatusFactory extends Factory
1212
{
1313
protected $model = WorkflowStatus::class;
1414

15-
/**
16-
* Define the model's default state.
17-
*
18-
* @return array<string, mixed>
19-
*/
2015
public function definition(): array
2116
{
2217
return [

database/factories/WorkflowTransitionFactory.php

+4-6
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,20 @@
66
use Squarebit\Workflows\Models\WorkflowTransition;
77

88
/**
9-
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\Squarebit\Workflows\Models\WorkflowTransition>
9+
* @extends Factory<WorkflowTransition>
1010
*/
1111
class WorkflowTransitionFactory extends Factory
1212
{
1313
protected $model = WorkflowTransition::class;
1414

15-
/**
16-
* Define the model's default state.
17-
*
18-
* @return array<string, mixed>
19-
*/
2015
public function definition(): array
2116
{
2217
return [
18+
/** @phpstan-ignore-next-line */
2319
'workflow_id' => WorkflowFactory::new()->create()->id,
20+
/** @phpstan-ignore-next-line */
2421
'from_id' => WorkflowStatusFactory::new()->create()->id,
22+
/** @phpstan-ignore-next-line */
2523
'to_id' => WorkflowStatusFactory::new()->create()->id,
2624
'order' => random_int(1, 999),
2725
];

phpstan.neon.dist

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ includes:
22
- phpstan-baseline.neon
33

44
parameters:
5-
level: 4
5+
level: 8
66
paths:
77
- src
88
- config
@@ -11,4 +11,3 @@ parameters:
1111
checkOctaneCompatibility: true
1212
checkModelProperties: true
1313
checkMissingIterableValueType: false
14-

src/Exceptions/UnauthorizedTransitionException.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
class UnauthorizedTransitionException extends Exception
99
{
10-
public function __construct(?string $message = null, ?Throwable $previous = null, array $headers = [], ?int $code = 0)
10+
public function __construct(?string $message = null, ?Throwable $previous = null)
1111
{
12-
parent::__construct($message ?? __('Unauthorized transition'), $code, $previous);
12+
parent::__construct($message ?? __('Unauthorized transition'), 403, $previous);
1313
}
1414
}

src/Models/Workflow.php

+9
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,25 @@ class Workflow extends Model
2020

2121
protected $table = 'workflows';
2222

23+
/**
24+
* @return HasMany<WorkflowTransition>
25+
*/
2326
public function transitions(): HasMany
2427
{
2528
return $this->hasMany(WorkflowTransition::class);
2629
}
2730

31+
/**
32+
* @return HasMany<WorkflowTransition>
33+
*/
2834
public function entryTransitions(): HasMany
2935
{
3036
return $this->transitions()->entry();
3137
}
3238

39+
/**
40+
* @return HasMany<WorkflowTransition>
41+
*/
3342
public function exitTransitions(): HasMany
3443
{
3544
return $this->transitions()->exit();

src/Models/WorkflowModelStatus.php

+12-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use Illuminate\Database\Eloquent\Relations\BelongsTo;
88
use Illuminate\Database\Eloquent\Relations\MorphTo;
99
use Illuminate\Database\Eloquent\SoftDeletes;
10+
use Illuminate\Foundation\Auth\User;
1011
use Squarebit\Workflows\Traits\BelongsToWorkflow;
1112

1213
/**
@@ -18,23 +19,33 @@
1819
*/
1920
class WorkflowModelStatus extends Model
2021
{
21-
use BelongsToWorkflow;
2222
use SoftDeletes;
23+
/** @use BelongsToWorkflow<WorkflowModelStatus> */
24+
use BelongsToWorkflow;
2325

2426
protected $with = ['status'];
2527

2628
protected $table = 'workflow_model_statuses';
2729

30+
/**
31+
* @return MorphTo<Model, WorkflowModelStatus>
32+
*/
2833
public function model(): MorphTo
2934
{
3035
return $this->morphTo('model');
3136
}
3237

38+
/**
39+
* @return BelongsTo<User, WorkflowModelStatus>
40+
*/
3341
public function user(): BelongsTo
3442
{
3543
return $this->belongsTo(config('workflow.user_model'));
3644
}
3745

46+
/**
47+
* @return BelongsTo<WorkflowStatus, WorkflowModelStatus>
48+
*/
3849
public function status(): BelongsTo
3950
{
4051
return $this->belongsTo(WorkflowStatus::class, 'workflow_status_id');

src/Models/WorkflowTransition.php

+34-5
Original file line numberDiff line numberDiff line change
@@ -23,59 +23,88 @@
2323
* @method static Builder fromTo(WorkflowStatus $from, WorkflowStatus $to)
2424
* @method static Builder entry()
2525
* @method static Builder exit()
26+
*
2627
*/
2728
class WorkflowTransition extends Model
2829
{
2930
use SoftDeletes;
31+
/** @use BelongsToWorkflow<WorkflowTransition> */
3032
use BelongsToWorkflow;
3133
use HasPermissions;
3234

3335
public string $guard_name = 'web';
3436

35-
public function getMorphClass():string
37+
protected $table = 'workflow_transitions';
38+
39+
public function getMorphClass(): string
3640
{
3741
return 'Workflow.WorkflowTransition';
3842
}
3943

40-
protected $table = 'workflow_transitions';
41-
44+
/**
45+
* @return BelongsTo<WorkflowStatus, WorkflowTransition>
46+
*/
4247
public function fromStatus(): BelongsTo
4348
{
4449
return $this->belongsTo(WorkflowStatus::class, 'from_id');
4550
}
4651

52+
/**
53+
* @return BelongsTo<WorkflowStatus, WorkflowTransition>
54+
*/
4755
public function toStatus(): BelongsTo
4856
{
4957
return $this->belongsTo(WorkflowStatus::class, 'to_id');
5058
}
5159

60+
/**
61+
* @param Builder<WorkflowTransition> $query
62+
* @return Builder<WorkflowTransition>
63+
*/
5264
public function scopeFrom(Builder $query, ?WorkflowStatus $from): Builder
5365
{
5466
return $query->where('from_id', $from?->id);
5567
}
5668

69+
/**
70+
* @param Builder<WorkflowTransition> $query
71+
* @return Builder<WorkflowTransition>
72+
*/
5773
public function scopeTo(Builder $query, ?WorkflowStatus $to): Builder
5874
{
5975
return $query->where('to_id', $to?->id);
6076
}
6177

78+
/**
79+
* @param Builder<WorkflowTransition> $query
80+
* @return Builder<WorkflowTransition>
81+
*/
6282
public function scopeFromTo(Builder $query, ?WorkflowStatus $from, ?WorkflowStatus $to): Builder
6383
{
64-
return $query->from($from)->to($to);
84+
return $query->from($from)
85+
->to($to);
6586
}
6687

88+
/**
89+
* @param Builder<WorkflowTransition> $query
90+
* @return Builder<WorkflowTransition>
91+
*/
6792
public function scopeEntry(Builder $query): Builder
6893
{
6994
return $query->whereNull('from_id');
7095
}
7196

97+
/**
98+
* @param Builder<WorkflowTransition> $query
99+
* @return Builder<WorkflowTransition>
100+
*/
72101
public function scopeExit(Builder $query): Builder
73102
{
74103
return $query->whereNull('to_id');
75104
}
76105

77106
public function __toString()
78107
{
79-
return $this->workflow.': '.($this->fromStatus ?? 'o').' -> '.($this->toStatus ?? 'x');
108+
return $this->workflow . ': ' . ($this->fromStatus ?? 'o') . ' -> ' . ($this->toStatus ?? 'x');
80109
}
81110
}

src/Services/TransitionService.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
class TransitionService
1414
{
15+
/**
16+
* @return Collection<int, WorkflowTransition>
17+
*/
1518
public static function availableTransitions(WorkflowModelStatus $modelStatus, Authenticatable $user = null): Collection
1619
{
1720
return WorkflowTransition::query()
@@ -26,7 +29,7 @@ public static function isAllowed(WorkflowTransition $transition, Authenticatable
2629
$user = $user ?? Auth::user();
2730

2831
if ($user === null) {
29-
return config('workflow.allow_guests_to_transition');
32+
return (bool) config('workflow.allow_guests_to_transition');
3033
}
3134

3235
$requiredPermissions = $transition->getAllPermissions();

src/Traits/BelongsToWorkflow.php

+9
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,31 @@
33
namespace Squarebit\Workflows\Traits;
44

55
use Illuminate\Database\Eloquent\Builder;
6+
use Illuminate\Database\Eloquent\Model;
67
use Illuminate\Database\Eloquent\Relations\BelongsTo;
78
use Squarebit\Workflows\Models\Workflow;
89

910
/**
11+
* @template T of Model
1012
* @property int $workflow_id
1113
* @property \Squarebit\Workflows\Models\Workflow $workflow
1214
*
1315
* @method static Builder forWorkflow(int|Workflow $workflow)
1416
*/
1517
trait BelongsToWorkflow
1618
{
19+
/**
20+
* @return BelongsTo<Workflow, T>
21+
*/
1722
public function workflow(): BelongsTo
1823
{
1924
return $this->belongsTo(Workflow::class);
2025
}
2126

27+
/**
28+
* @param Builder<T> $query
29+
* @return Builder<T>
30+
*/
2231
public function scopeForWorkflow(Builder $query, int|Workflow $workflow): Builder
2332
{
2433
return $query->where('workflow_id', is_int($workflow) ? $workflow : $workflow->id);

0 commit comments

Comments
 (0)