Skip to content

Commit cf8df24

Browse files
committed
Using self
1 parent 2951d76 commit cf8df24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BitArray/BitArray.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ public function count()
229229

230230
for ($i = 0, $length = strlen($this->data); $i < $length; $i++)
231231
{
232-
$count += static::$count[ord($this->data[$i])];
232+
$count += self::$count[ord($this->data[$i])];
233233
}
234234

235235
return $count;

0 commit comments

Comments
 (0)