File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ the impersonator user::
112
112
use Symfony\Component\Security\Core\Security;
113
113
// ...
114
114
115
- public class SomeService
115
+ class SomeService
116
116
{
117
117
private $security;
118
118
Original file line number Diff line number Diff line change @@ -227,16 +227,16 @@ registry in the constructor::
227
227
class MyClass
228
228
{
229
229
230
- private $worflowRegistry ;
230
+ private $workflowRegistry ;
231
231
232
232
public function __construct(Registry $workflowRegistry)
233
233
{
234
- $this->worflowRegistry = $worflowRegistry ;
234
+ $this->workflowRegistry = $workflowRegistry ;
235
235
}
236
236
237
237
public function toReview(BlogPost $blogPost)
238
238
{
239
- $workflow = $this->worflowRegistry ->get($blogPost);
239
+ $workflow = $this->workflowRegistry ->get($blogPost);
240
240
241
241
// Update the currentState on the post
242
242
try {
You can’t perform that action at this time.
0 commit comments