Skip to content

Commit

Permalink
I hate PSR-2 :D
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Mar 19, 2015
1 parent 5b658bd commit 705f5ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Collection/CollectionTrait.php
Expand Up @@ -525,7 +525,7 @@ public function unfold(callable $transformer = null)
* {@inheritDoc}
*
*/
public function through(callable $handler)
public function through(callable $handler)
{
$result = $handler($this);
return $result instanceof CollectionInterface ? $result: new Collection($result);
Expand Down

4 comments on commit 705f5ae

@dereuromark
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I still wait for the day people start to use a sane approach like PSR-2-R alias CakePHP-RIP :)

@ceeram
Copy link
Contributor

@ceeram ceeram commented on 705f5ae Mar 19, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it hates you back :P

@josegonzalez
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Trim trailing whitespace. It's a feature in almost every sane editor.

@lorenzo
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Github's editor is not that sane, then :(

I thought every time the CS fixes would be a quick thing so I did them directly in Github, I was wrong

Please sign in to comment.