Skip to content

Commit f0b4ff1

Browse files
committed
CS fixes
1 parent 71b309d commit f0b4ff1

33 files changed

+7
-36
lines changed

src/Jenssegers/Mongodb/Auth/DatabaseTokenRepository.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
class DatabaseTokenRepository extends \Illuminate\Auth\Passwords\DatabaseTokenRepository
66
{
7-
87
/**
98
* Build the record payload for the table.
109
*

src/Jenssegers/Mongodb/Auth/PasswordResetServiceProvider.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
class PasswordResetServiceProvider extends \Illuminate\Auth\Passwords\PasswordResetServiceProvider
66
{
7-
87
/**
98
* Register the token repository implementation.
109
*

src/Jenssegers/Mongodb/Collection.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
class Collection
77
{
8-
98
/**
109
* The connection instance.
1110
*
@@ -40,7 +39,7 @@ public function __call($method, $parameters)
4039
{
4140
$start = microtime(true);
4241
$result = call_user_func_array([$this->collection, $method], $parameters);
43-
42+
4443
if ($this->connection->logging()) {
4544
// Once we have run the query we will calculate the time that it took to run and
4645
// then log the query, bindings, and execution time so we will report them on

src/Jenssegers/Mongodb/Connection.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
class Connection extends \Illuminate\Database\Connection
66
{
7-
87
/**
98
* The MongoDB database handler.
109
*

src/Jenssegers/Mongodb/Eloquent/Builder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
class Builder extends EloquentBuilder
99
{
10-
1110
/**
1211
* The methods that should be returned from query builder.
1312
*

src/Jenssegers/Mongodb/Eloquent/Collection.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
class Collection extends EloquentCollection
66
{
7-
87
/**
98
* Simulate a get clause on the collection.
109
*

src/Jenssegers/Mongodb/Eloquent/HybridRelations.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
trait HybridRelations
1313
{
14-
1514
/**
1615
* Define a one-to-one relationship.
1716
*

src/Jenssegers/Mongodb/MongodbServiceProvider.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
class MongodbServiceProvider extends ServiceProvider
77
{
8-
98
/**
109
* Bootstrap the application events.
1110
*/

src/Jenssegers/Mongodb/Query/Builder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
class Builder extends BaseBuilder
1515
{
16-
1716
/**
1817
* The database collection.
1918
*

src/Jenssegers/Mongodb/Relations/BelongsTo.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
class BelongsTo extends \Illuminate\Database\Eloquent\Relations\BelongsTo
44
{
5-
65
/**
76
* Set the base constraints on the relation query.
87
*/

0 commit comments

Comments
 (0)