Мне интересно об этой странной вещи:
public function getAllCustomers()
{
$customers = $this->redis->keys("customer:*");
foreach ($customers as $value) {
return new \Customer($this->redis->hget($value,"name"),$this->redis->hget($value,"id"),$this->redis->hget($value,"email"));
}
}
Этот метод возвращает всех клиентов из моей базы данных.
Но если я попытаюсь перебрать всех этих клиентов:
foreach ($customerController->getAllCustomers() as $customer) {
var_dump($customer);
}
Метод getName()
не найден. var_dump возвращает:
NULL
NULL
NULL
Класс клиента:
class Customer {
var $name;
var $id;
var $email;
function __construct($name, $id,$email) {
$this->name = $name;
$this->id = $id;
$this->email = $email;
}
/**
* @return mixed
*/
public function getName()
{
return $this->name;
}
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @return mixed
*/
public function getEmail()
{
return $this->email;
}
public function __toString()
{
return "";
}
}
Я довольно новичок в PHP
и не понимаю, почему я не могу получить доступ к полю объекта Customer.