Ребят сори за нубский вопрос, только изучаю php подскажите в чем ошибка, phpStorm подчеркивает ошибку
Возможно у меня неправильно указан путь
При наведении мышки редактор выдает что обьект не найден, подключить выражение не разрешено
код из всех файлов
User.php
<?php
namespace Models\Users;
class User {
private $name;
public function __construct($name)
{
$this->name = $name;
}
public function getName():string
{
return $this->name;
}
}
Article.php
<?php
namespace Models\Articles;
use Models\Users\User;
class Article {
private $title;
private $text;
private $author;
public function __construct(string $text, string $title, User $author)
{
$this->title = $title;
$this->text = $text;
$this->author = $author;
}
public function getTitle(): string
{
return $this->title;
}
public function getText(): string
{
return $this->text;
}
public function getAuthor(): User
{
return $this->author;
}
}