fix typo in SplFixedArray

Esse commit está contido em:
Paul Tarjan
2013-06-19 14:23:46 -07:00
commit de Sara Golemon
commit 9fbfca6510
@@ -198,7 +198,7 @@ class SplFixedArray implements Iterator, ArrayAccess, Countable {
if ($size < count($this->data)) {
$this->data = array_slice($this->data, 0, $size);
} else if ($size > count($this->data)) {
$this->data = array_pad($thid->data, $size, null);
$this->data = array_pad($this->data, $size, null);
}
}