public function ArrayObject::count in Express 8
Get the number of public properties in the ArrayObject.
Return value
int The count.
File
- themes/
contrib/ bootstrap/ src/ Utility/ ArrayObject.php, line 173 - Contains \Drupal\bootstrap\Utility\ArrayObject.
Class
- ArrayObject
- Custom ArrayObject implementation.
Namespace
Drupal\bootstrap\UtilityCode
public function count() {
return count($this->array);
}