Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gammamatrix committed May 1, 2024
1 parent 2b20f4b commit 8b02b73
Show file tree
Hide file tree
Showing 15 changed files with 45 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/Unit/Models/Board/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Epic/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Flow/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Matrix/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Milestone/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Note/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Project/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Release/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Roadmap/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Source/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Sprint/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Tag/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Team/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Ticket/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Models/Version/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class ModelTest extends ModelCase

protected bool $hasRelationships = true;

/**
* @var array<int, string> Test has one relationships.
*/
protected array $hasOne = [
'creator',
'modifier',
Expand Down

0 comments on commit 8b02b73

Please sign in to comment.