Skip to content

Commit e4b0aca

Browse files
committed
Apply StyleCI fixes
1 parent 911acf3 commit e4b0aca

File tree

3 files changed

+16
-15
lines changed

3 files changed

+16
-15
lines changed

src/Eloquent/Builder.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,8 @@ public function raw($expression = null)
192192
* TODO Remove if https://github.com/laravel/framework/commit/6484744326531829341e1ff886cc9b628b20d73e
193193
* wiil be reverted
194194
* Issue in laravel frawework https://github.com/laravel/framework/issues/27791.
195-
* @param array $values
195+
*
196+
* @param array $values
196197
* @return array
197198
*/
198199
protected function addUpdatedAtColumn(array $values)

src/Eloquent/Model.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ abstract class Model extends BaseModel
5050
/**
5151
* Custom accessor for the model's id.
5252
*
53-
* @param mixed $value
53+
* @param mixed $value
5454
* @return mixed
5555
*/
5656
public function getIdAttribute($value = null)
@@ -279,7 +279,7 @@ public function originalIsEquivalent($key)
279279
/**
280280
* Remove one or more fields.
281281
*
282-
* @param mixed $columns
282+
* @param mixed $columns
283283
* @return int
284284
*/
285285
public function drop($columns)
@@ -325,8 +325,8 @@ public function push()
325325
/**
326326
* Remove one or more values from an array.
327327
*
328-
* @param string $column
329-
* @param mixed $values
328+
* @param string $column
329+
* @param mixed $values
330330
* @return mixed
331331
*/
332332
public function pull($column, $values)
@@ -344,9 +344,9 @@ public function pull($column, $values)
344344
/**
345345
* Append one or more values to the underlying attribute value and sync with original.
346346
*
347-
* @param string $column
348-
* @param array $values
349-
* @param bool $unique
347+
* @param string $column
348+
* @param array $values
349+
* @param bool $unique
350350
*/
351351
protected function pushAttributeValues($column, array $values, $unique = false)
352352
{
@@ -369,8 +369,8 @@ protected function pushAttributeValues($column, array $values, $unique = false)
369369
/**
370370
* Remove one or more values to the underlying attribute value and sync with original.
371371
*
372-
* @param string $column
373-
* @param array $values
372+
* @param string $column
373+
* @param array $values
374374
*/
375375
protected function pullAttributeValues($column, array $values)
376376
{
@@ -402,7 +402,7 @@ public function getForeignKey()
402402
/**
403403
* Set the parent relation.
404404
*
405-
* @param \Illuminate\Database\Eloquent\Relations\Relation $relation
405+
* @param \Illuminate\Database\Eloquent\Relations\Relation $relation
406406
*/
407407
public function setParentRelation(Relation $relation)
408408
{
@@ -495,7 +495,7 @@ protected function getRelationsWithoutParent()
495495
* Checks if column exists on a table. As this is a document model, just return true. This also
496496
* prevents calls to non-existent function Grammar::compileColumnListing().
497497
*
498-
* @param string $key
498+
* @param string $key
499499
* @return bool
500500
*/
501501
protected function isGuardableColumn($key)

tests/TestCase.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class TestCase extends Orchestra\Testbench\TestCase
99
/**
1010
* Get application providers.
1111
*
12-
* @param \Illuminate\Foundation\Application $app
12+
* @param \Illuminate\Foundation\Application $app
1313
* @return array
1414
*/
1515
protected function getApplicationProviders($app)
@@ -24,7 +24,7 @@ protected function getApplicationProviders($app)
2424
/**
2525
* Get package providers.
2626
*
27-
* @param \Illuminate\Foundation\Application $app
27+
* @param \Illuminate\Foundation\Application $app
2828
* @return array
2929
*/
3030
protected function getPackageProviders($app)
@@ -40,7 +40,7 @@ protected function getPackageProviders($app)
4040
/**
4141
* Define environment setup.
4242
*
43-
* @param Illuminate\Foundation\Application $app
43+
* @param Illuminate\Foundation\Application $app
4444
* @return void
4545
*/
4646
protected function getEnvironmentSetUp($app)

0 commit comments

Comments
 (0)