Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/refactorings.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class Post
After moving to `src/Cms/Article.php`:

```php
# src/Cms/Page.php
# src/Cms/Article.php
<?php

namespace Acme\Cms;
Expand Down Expand Up @@ -160,7 +160,7 @@ isolate some of it's responsibility. When doing this you may:
Cursor position shown as `<>`:

```php
# src/Blog/Post.php
# src/Blog/FoobarResolver.php
<?php

namespace Acme\Blog;
Expand All @@ -177,7 +177,7 @@ class FoobarResolver
After invoking "change visibility" on or within the method.

```php
# src/Blog/Post.php
# src/Blog/FoobarResolver.php
<?php

namespace Acme\Blog;
Expand Down