*/ trait CountableTrait { /** * Counts the number of records in the private $data array. * * @return int Number of records */ public function count(): int { return count($this->DataProvider_DATA); } }