Skip to content

Commit 27d3268

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Update impersonating_user.rst Small typo in workflow.rst
2 parents d3c6d2c + 230fb24 commit 27d3268

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

security/impersonating_user.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ the impersonator user::
108108
use Symfony\Component\Security\Core\Security;
109109
// ...
110110

111-
public class SomeService
111+
class SomeService
112112
{
113113
private $security;
114114

workflow.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,16 +227,16 @@ registry in the constructor::
227227
class MyClass
228228
{
229229
230-
private $worflowRegistry;
230+
private $workflowRegistry;
231231
232232
public function __construct(Registry $workflowRegistry)
233233
{
234-
$this->worflowRegistry = $worflowRegistry;
234+
$this->workflowRegistry = $workflowRegistry;
235235
}
236236
237237
public function toReview(BlogPost $blogPost)
238238
{
239-
$workflow = $this->worflowRegistry->get($blogPost);
239+
$workflow = $this->workflowRegistry->get($blogPost);
240240
241241
// Update the currentState on the post
242242
try {

0 commit comments

Comments
 (0)