@@ -45,7 +45,7 @@ trait RepositoryTrait
4545 * If the `$condition` parameter is not null, it calls {@see ActiveQueryInterface::andWhere()} method.
4646 * Do not to pass user input to this method, use {@see findByPk()} instead.
4747 *
48- * @param array|string| ExpressionInterface|null $condition The condition to be applied to the query where clause.
48+ * @param array|ExpressionInterface|string |null $condition The condition to be applied to the query where clause.
4949 * No condition is applied if `null` (by default).
5050 * @param array $params The parameters to be bound to the SQL statement during execution.
5151 */
@@ -92,7 +92,7 @@ public static function find(array|string|ExpressionInterface|null $condition = n
9292 * $post = Post::findByPk($id);
9393 * ```
9494 *
95- * @param array|string| ExpressionInterface|null $condition The condition to be applied to the query where clause.
95+ * @param array|ExpressionInterface|string |null $condition The condition to be applied to the query where clause.
9696 * Returns all records if `null` (by default).
9797 * @param array $params The parameters to be bound to the SQL statement during execution.
9898 *
@@ -110,7 +110,7 @@ public static function findAll(array|string|ExpressionInterface|null $condition
110110 * $customers = Customer::tryFindAll(['is_active' => true]);
111111 * ```
112112 *
113- * @param array|string| ExpressionInterface|null $condition The condition to be applied to the query where clause.
113+ * @param array|ExpressionInterface|string |null $condition The condition to be applied to the query where clause.
114114 * Returns all records if `null` (by default).
115115 * @param array $params The parameters to be bound to the SQL statement during execution.
116116 *
@@ -238,7 +238,7 @@ public static function findBySql(string $sql, array $params = []): ActiveQueryIn
238238 * $post = Post::findByPk($id);
239239 * ```
240240 *
241- * @param array|string| ExpressionInterface|null $condition The condition to be applied to the query where clause.
241+ * @param array|ExpressionInterface|string |null $condition The condition to be applied to the query where clause.
242242 * Returns the first record if `null` (by default).
243243 * @param array $params The parameters to be bound to the SQL statement during execution.
244244 *
@@ -258,7 +258,7 @@ public static function findOne(
258258 * $customer = Customer::findOneOrFail(['id' => 1]);
259259 * ```
260260 *
261- * @param array|string| ExpressionInterface|null $condition The condition to be applied to the query where clause.
261+ * @param array|ExpressionInterface|string |null $condition The condition to be applied to the query where clause.
262262 * Returns the first record if `null` (by default).
263263 * @param array $params The parameters to be bound to the SQL statement during execution.
264264 *
0 commit comments