从上的PHP手册defining namespaces:
命名空间是使用namespace关键字声明的。A file containing
a namespace must declare the namespace at the top of the file before
any other code - with one exception: the declare keyword.
要解决此问题,只需确保命名空间声明位于其他代码之前:
namespace JSR;
defined( \'ABSPATH\' ) || exit;
class myClass{
}