Skip to content

Commit 9e8a63e

Browse files
committed
(+) remove unused property
1 parent 85de6d7 commit 9e8a63e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/models/Birthday.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,10 @@
99
*
1010
* @property string $name
1111
* @property string $birthday
12-
* @property string $day
13-
* @property string $month
14-
* @property string $year
15-
* @property string $time
1612
*/
1713
class Birthday extends Eloquent
1814
{
1915
protected $connection = 'mongodb';
2016
protected $collection = 'birthday';
21-
protected $fillable = ['name', 'birthday', 'day', 'month', 'year', 'time'];
17+
protected $fillable = ['name', 'birthday'];
2218
}

0 commit comments

Comments
 (0)