Let's say I have these namespaces :
use
DataTables\Editor,
DataTables\Editor\Field;
DataTables\Editor\Format,
DataTables\Editor\Mjoin,
DataTables\Editor\Options,
DataTables\Editor\Upload,
DataTables\Editor\Validate;
But I only really use 2 of them:
use
DataTables\Editor,
DataTables\Editor\Field;
//DataTables\Editor\Format,
//DataTables\Editor\Mjoin,
//DataTables\Editor\Options,
//DataTables\Editor\Upload,
//DataTables\Editor\Validate;
As seen above, I do not need them. So, is there a considerable loss for leaving the other 5 namespaces even though I do not use it?