diff --git a/src/Illuminate/Database/Query/Builder.php b/src/Illuminate/Database/Query/Builder.php index c9f2c2f57430..4b6cea77fc87 100755 --- a/src/Illuminate/Database/Query/Builder.php +++ b/src/Illuminate/Database/Query/Builder.php @@ -888,7 +888,7 @@ public function orWhereNotNull($column) { return $this->whereNotNull($column, 'or'); } - + /** * Add a "where date" statement to the query. * @@ -902,7 +902,7 @@ public function whereDate($column, $operator, $value, $boolean = 'and') { return $this->addDateBasedWhere('Date', $column, $operator, $value, $boolean); } - + /** * Add a "where day" statement to the query. * diff --git a/src/Illuminate/Foundation/Testing/ApplicationTrait.php b/src/Illuminate/Foundation/Testing/ApplicationTrait.php index 0fb338cf5022..101e2e7f1c5e 100644 --- a/src/Illuminate/Foundation/Testing/ApplicationTrait.php +++ b/src/Illuminate/Foundation/Testing/ApplicationTrait.php @@ -27,7 +27,7 @@ trait ApplicationTrait { protected function refreshApplication() { putenv('APP_ENV=testing'); - + $this->app = $this->createApplication(); } diff --git a/src/Illuminate/Support/ViewErrorBag.php b/src/Illuminate/Support/ViewErrorBag.php index 08703bbce6b0..23e7a1aa72dd 100644 --- a/src/Illuminate/Support/ViewErrorBag.php +++ b/src/Illuminate/Support/ViewErrorBag.php @@ -33,15 +33,15 @@ public function getBag($key) { return array_get($this->bags, $key, new MessageBag); } - + /** * Get all the bags. - * + * * @return array */ public function getBags() { - return $this->bags; + return $this->bags; } /**