Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
marco76tv committed Feb 28, 2024
1 parent 8c31c25 commit b1682b8
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions Models/BaseModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,16 @@ abstract class BaseModel extends Model
*/
public static $snakeAttributes = true;

/**
* @var bool
*/
/** @var bool */
public $incrementing = true;

/**
* @var bool
*/
/** @var bool */
public $timestamps = true;

/** @var int */
protected $perPage = 30;

/** @var string */
protected $connection = 'mysql';

/** @var array<string, string> */
Expand All @@ -58,9 +55,7 @@ abstract class BaseModel extends Model
/** @var array<int, string> */
protected $appends = [];

/**
* @var string
*/
/** @var string */
protected $primaryKey = 'id';

/** @var array<int, string> */
Expand Down

0 comments on commit b1682b8

Please sign in to comment.