Skip to content

Commit 540769c

Browse files
authored
Merge pull request #1697 from nederdirk/findOne-override-declaration-nullable
Update findOne model overrides: nullable return
2 parents 91a1478 + 96c72a2 commit 540769c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Propel/Generator/Builder/Om/QueryBuilder.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -183,14 +183,14 @@ protected function addClassOpen(&$script)
183183

184184
// override the signature of ModelCriteria::findOne() to specify the class of the returned object, for IDE completion
185185
$script .= "
186-
* @method $modelClass findOne(ConnectionInterface \$con = null) Return the first $modelClass matching the query
186+
* @method $modelClass|null findOne(ConnectionInterface \$con = null) Return the first $modelClass matching the query
187187
* @method $modelClass findOneOrCreate(ConnectionInterface \$con = null) Return the first $modelClass matching the query, or a new $modelClass object populated from the query conditions when no match is found
188188
*";
189189

190190
// magic findBy() methods, for IDE completion
191191
foreach ($this->getTable()->getColumns() as $column) {
192192
$script .= "
193-
* @method $modelClass findOneBy" . $column->getPhpName() . '(' . $column->getPhpType() . ' $' . $column->getName() . ") Return the first $modelClass filtered by the " . $column->getName() . ' column';
193+
* @method $modelClass|null findOneBy" . $column->getPhpName() . '(' . $column->getPhpType() . ' $' . $column->getName() . ") Return the first $modelClass filtered by the " . $column->getName() . ' column';
194194
}
195195

196196
$script .= " * \n";

0 commit comments

Comments
 (0)