@@ -51,57 +51,73 @@ php artisan operations:make <operation_name> -e|--essential
51
51
52
52
### Process operations
53
53
54
- - ** Process all new operation files:**
54
+ Process all new operation files:
55
55
```shell
56
56
php artisan operations: process
57
57
```
58
58
59
- - ** Force synchronous execution:**
59
+ Force synchronous execution:
60
60
```shell
61
61
php artisan operations: process --sync
62
62
```
63
63
64
- - ** Force asynchronous execution:**
64
+ Force asynchronous execution:
65
65
```shell
66
66
php artisan operations: process --async
67
67
```
68
68
69
- - ** Test mode (don' t flag operations as processed):**
69
+ Test mode (don't flag operations as processed):
70
70
```shell
71
71
php artisan operations: process --test
72
72
```
73
73
74
- - ** Run command isolated:**
74
+ Run command isolated:
75
75
```shell
76
76
php artisan operations: process --isolated
77
77
```
78
78
79
- - ** Force a specific queue for the job:**
79
+ Force a specific queue for the job:
80
80
```shell
81
81
php artisan operations: process --queue=<name >
82
82
```
83
83
84
- - ** Only process operations with a specific tag:**
84
+ Only process operations with a specific tag:
85
85
```shell
86
86
php artisan operations: process --tag=<tagname >
87
87
```
88
88
89
- - ** Re-run one specific operation:**
89
+ Re-run one specific operation:
90
90
```shell
91
91
php artisan operations: process <operation_name>
92
92
```
93
93
94
-
95
94
### Show operations
96
- ```shell
97
- php artisan operations:show // show all operations
98
- php artisan operations:show pending // show pending operations
99
- php artisan operations:show processed // show processed operations
100
- php artisan operations:show disposed // show disposed operations
101
95
102
- php artisan operations:show pending processed disposed // use multiple filters
103
- ```
104
-
96
+ Show all operations:
97
+ ```shell
98
+ php artisan operations: show
99
+ ```
100
+
101
+ Show pending operations:
102
+ ```shell
103
+ php artisan operations: show pending
104
+ ```
105
+
106
+ Show processed operations:
107
+ ```shell
108
+ php artisan operations: show processed
109
+ ```
110
+
111
+ Show disposed operations:
112
+ ```shell
113
+ php artisan operations: show disposed
114
+ ```
115
+
116
+ Use multiple filters to show operations:
117
+ ```shell
118
+ php artisan operations: show pending processed disposed
119
+ ```
120
+
105
121
## Tutorials
106
122
107
123
### CI/CD & Deployment-Process
0 commit comments