Navigation Menu

Skip to content

Commit

Permalink
Correct CS in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Nov 17, 2014
1 parent 5444658 commit 0a1b1a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Collection/README.md
Expand Up @@ -15,7 +15,7 @@ $collection = new Collection($items);

// Create a new collection containing elements
// with a value greater than one.
$overOne = $collection->filter(function($value, $key, $iterator) {
$overOne = $collection->filter(function ($value, $key, $iterator) {
return $value > 1;
});
```
Expand Down
2 changes: 1 addition & 1 deletion src/Event/README.md
Expand Up @@ -29,7 +29,7 @@ class Orders {
}

$orders = new Orders();
$orders->eventManager()->attach(function($event) {
$orders->eventManager()->attach(function ($event) {
// Do something after the order was placed
...
}, 'Orders.afterPlace');
Expand Down
2 changes: 1 addition & 1 deletion src/Log/README.md
Expand Up @@ -35,7 +35,7 @@ Log::config('production', [
It is also possible to create loggers by providing a closure.

```php
Log::config('special', function() {
Log::config('special', function () {
// Return any PSR-3 compatible logger
return new MyPSR3CompatibleLogger();
});
Expand Down

0 comments on commit 0a1b1a1

Please sign in to comment.