As of PHP 7, you can now group your imported classes, functions, and constants from under the same namespace. Let’s look at a example to show you how you can start using this today in your projects.
Previously you’d have to write out your imports like so:
<?php
use App\Category;
use App\Product;
Now you can group them since they are within the same namespace of App like so.
<?php
use App\{Category, Product};