PHP·98 questions

What is a namespace?

Answer
namespace App\Models;.
Allows avoiding name conflicts.
use App\Models\User;.
Full name: \App\Models\User.
PSR-4 — autoloading by namespace.
Was this answer helpful?

More questions in this topic

Related questions from other topics