@@ -13,7 +13,7 @@ |
||
| 13 | 13 | |
| 14 | 14 | public static function statusUpdateTooLong($exceededLength) |
| 15 | 15 | { |
| 16 | - return new static("Couldn't post Notification, because the status message was too long by " . |
|
| 17 | - $exceededLength . " character(s)."); |
|
| 16 | + return new static("Couldn't post Notification, because the status message was too long by ". |
|
| 17 | + $exceededLength." character(s)."); |
|
| 18 | 18 | } |
| 19 | 19 | } |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | */ |
| 47 | 47 | public function withImage($images) |
| 48 | 48 | { |
| 49 | - collect($images)->each(function ($image) { |
|
| 49 | + collect($images)->each(function($image) { |
|
| 50 | 50 | $this->images[] = new TwitterImage($image); |
| 51 | 51 | }); |
| 52 | 52 | |