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\' a
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.