Skip to content

Commit 34b0acd

Browse files
committed
correcting return type for select
1 parent cbfb63a commit 34b0acd

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

phalcon/DataMapper/Query/Select.zep

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -352,17 +352,13 @@ class Select extends AbstractConditions
352352

353353
/**
354354
* Resets the internal collections
355-
*
356-
* @return Select
357355
*/
358-
public function reset() -> <Select>
356+
public function reset() -> void
359357
{
360358
parent::reset();
361359

362360
let this->asAlias = "",
363361
this->forUpdate = false;
364-
365-
return this;
366362
}
367363

368364
/**

0 commit comments

Comments
 (0)