Skip to content

Commit

Permalink
Merge pull request #7860 from cakephp/upd
Browse files Browse the repository at this point in the history
Update entities.rst (fr)
  • Loading branch information
othercorey authored May 29, 2024
2 parents 11b4c44 + aa5501b commit f17dc12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fr/orm/entities.rst
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ vérifier si un champ contient une valeur 'non-empty'::
$article->isEmpty('title'); // false
$article->hasValue('title'); // true

$article->has('user_id'); // false
$article->has('user_id'); // true
$article->isEmpty('user_id'); // true
$article->hasValue('user_id'); // false

$article->has('text'); // true
$article->isEmpty('text'); // true
$article->hasValue('text'); // false
Expand Down

0 comments on commit f17dc12

Please sign in to comment.