Skip to content

Commit

Permalink
fix stan
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Mar 26, 2024
1 parent 836853d commit f85e46d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Card.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* will have it's idField set as data-id HTML attribute for the card. Thus making
* the ID available via javascript (new Jquery())->data('id')
*
* @property false $model use $entity property instead
* @property false|null $model use $entity property instead TODO remove null once https://github.com/phpstan/phpstan/issues/10787 is fixed
*/
class Card extends View
{
Expand Down
2 changes: 1 addition & 1 deletion src/CardTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* IMPORTANT: Although the purpose of the "Card" component will remain the same, we do plan to
* improve implementation of a card to to use https://fomantic-ui.com/views/card.html .
*
* @property false $model use $entity property instead
* @property false|null $model use $entity property instead TODO remove null once https://github.com/phpstan/phpstan/issues/10787 is fixed
*/
class CardTable extends Table
{
Expand Down
2 changes: 1 addition & 1 deletion src/Form/AbstractLayout.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Custom Layout for a form.
*
* @property false $model use $entity property instead
* @property false|null $model use $entity property instead TODO remove null once https://github.com/phpstan/phpstan/issues/10787 is fixed
*/
abstract class AbstractLayout extends View
{
Expand Down
2 changes: 1 addition & 1 deletion src/VueComponent/InlineEdit.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* A Simple inline editable text Vue component.
*
* @property false $model use $entity property instead
* @property false|null $model use $entity property instead TODO remove null once https://github.com/phpstan/phpstan/issues/10787 is fixed
*/
class InlineEdit extends View
{
Expand Down

0 comments on commit f85e46d

Please sign in to comment.