I want to know if unused use statements in my class affect performance of my php website?
Does php include all classes in beginning or when need it? If second choice then I think it doesn't affect performance of my system.
For Example: Use statement 'DbConnector' is not used
use model\adapter\DbConnector;