Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm wondering whether in the situation where I'm extending a class that has already 'use' keyword above it to use specific namespace - do I need to add another 'use' above the inheriting class to use the same namespace? Situation like this:

namespace Core;

use System\Plugin;

class Front extends Application { }

and now in the Controller, which is called directly without the namespace (using full path):

use System\Plugin;

class PageController extends Front { }

or would it work without 'use' as well and allow me to use the System\Plugin namespace:

class PageController extends Front { }

?

share|improve this question
These classes would be declared without namespace, because you don't declare one on the top! – Dan Lee Aug 3 '12 at 11:36
Sorry - you're right - forgotten to add namespace at the top - amended. – Spencer Mark Aug 3 '12 at 11:37

1 Answer

up vote 2 down vote accepted

No, you need the "use" statement in both files. Use is a file-level keyword and isn't affected by inheritance.

See the scoping rules for importing and the little box describing what I said at the bottom of the manual page.

share|improve this answer
Thanks @Lusitanian! – Spencer Mark Aug 3 '12 at 11:39
Obviously if within the Front class I've instantiated an object from within the Plugin namespace then I can use it without the 'use System\Plugin' in the inherited class. – Spencer Mark Aug 3 '12 at 11:41
Of course, and you don't always need a use statement either. Using the fully-qualified namespace works as well. – Lusitanian Aug 3 '12 at 11:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.