return [];
} $mockedClassString =
$this->
resolveClassName($node->
getArgs()[0
]->value
);
if ($mockedClassString === null || !
$this->reflectionProvider->
hasClass($mockedClassString)) { return [];
} $mockedClass =
$this->reflectionProvider->
getClass($mockedClassString);
if (!
$this->
isBlacklisted($mockedClass)) { return [];
} return [ sprintf('Mocking of %s is not allowed. The object is very basic and can be constructed',
$mockedClassString),
];
} private function isTestClass(Scope
$node): bool
{ if ($node->
getClassReflection() === null
) {