Skip to content

Commit 9f3c9d3

Browse files
committed
Autocomplete book attributes
1 parent 650d8a5 commit 9f3c9d3

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

_ide_helper.php

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?php
2+
/** @noinspection all */
3+
4+
namespace Code16\LaravelTiteliveClient {
5+
6+
use Carbon\Carbon;
7+
use Code16\LaravelTiteliveClient\Enum\BookAvailability;
8+
use Illuminate\Database\Eloquent\Model;
9+
10+
/**
11+
* @property string id
12+
* @property string title
13+
* @property string[] authors
14+
* @property string|null translator
15+
* @property string description
16+
* @property int weight
17+
* @property int page_count
18+
* @property string[] category_codes
19+
* @property string|null readership
20+
* @property string editor
21+
* @property int price
22+
* @property Carbon|null published_date
23+
* @property string support
24+
* @property string[] visuals
25+
* @property BookAvailability availability
26+
* @property int stock
27+
* @property string[] editions
28+
* @property \DateTimeInterface refreshed_at
29+
*/
30+
class Book extends Model {}
31+
}

0 commit comments

Comments
 (0)