Skip to content

Commit 1088ed9

Browse files
author
Lupacescu Eduard
authored
Apply fixes from StyleCI (#113)
1 parent 8d52276 commit 1088ed9

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

tests/FieldResolversTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
use Binaryk\LaravelRestify\Tests\Fixtures\BookRepository;
88

99
/**
10-
* @package Binaryk\LaravelRestify\Tests;
1110
* @author Eduard Lupacescu <[email protected]>
1211
*/
1312
class FieldResolversTest extends IntegrationTest

tests/Fixtures/BookPolicy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ public function update($user, $book)
3232
}
3333

3434
/**
35-
* Determine if book can be shown
35+
* Determine if book can be shown.
3636
*/
3737
public function show($user, $book)
3838
{
3939
return $_SERVER['restify.book.showable'] ?? true;
4040
}
4141

4242
/**
43-
* Determine if books can be deleted
43+
* Determine if books can be deleted.
4444
*/
4545
public function destroy($user)
4646
{

tests/Migrations/2019_12_22_000006_create_books_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function up()
1616
Schema::create('books', function (Blueprint $table) {
1717
$table->increments('id');
1818
$table->string('title');
19-
$table->longText('description')->nullable();;
19+
$table->longText('description')->nullable();
2020
$table->string('author')->nullable();
2121
$table->float('price')->default(0);
2222
$table->integer('stock')->nullable();

0 commit comments

Comments
 (0)