Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fr/orm/entities.rst
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ doivent être exposés::

class User extends Entity
{
protected $_virtual = ['full_name'];
protected array $_virtual = ['full_name'];
}

Cette liste peut être modifiée à la volée en utilisant la méthode
Expand Down
2 changes: 1 addition & 1 deletion ja/orm/entities.rst
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ CakePHP では以下のように簡単にできます。 ::

class User extends Entity
{
protected $_virtual = ['full_name'];
protected array $_virtual = ['full_name'];
}

実行時に ``setVirtual()`` を使うことでこのリストを変更できます。 ::
Expand Down
4 changes: 1 addition & 3 deletions pt/orm/entities.rst
Original file line number Diff line number Diff line change
Expand Up @@ -496,9 +496,7 @@ virtuais que devem ser expostas::

class User extends Entity
{

protected $_virtual = ['full_name'];

protected array $_virtual = ['full_name'];
}

Esta lista pode ser modificada em tempo de execução usando o método
Expand Down