We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 459ae3f commit 56a14e3Copy full SHA for 56a14e3
src/SORM/Entity.php
@@ -373,7 +373,7 @@ public function setPKName($pkName)
373
return $this;
374
}
375
376
- public function getCount()
+ public function getFullCount()
377
{
378
return (int)$this->driver->query("select count(*) from `{$this->getTableName()}`")->fetchRow()[0];
379
src/SORM/EntityInterface.php
@@ -148,6 +148,6 @@ public function setPKName($pkName);
148
*
149
* @return int
150
*/
151
- public function getCount();
+ public function getFullCount();
152
153
0 commit comments