mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
chore: style
This commit is contained in:
@ -50,21 +50,15 @@ it('cannot resolve a parameter without type', function () {
|
||||
|
||||
class ClassWithDependency
|
||||
{
|
||||
public function __construct(Container $container)
|
||||
{
|
||||
}
|
||||
public function __construct(Container $container) {}
|
||||
}
|
||||
|
||||
class ClassWithSubDependency
|
||||
{
|
||||
public function __construct(ClassWithDependency $param)
|
||||
{
|
||||
}
|
||||
public function __construct(ClassWithDependency $param) {}
|
||||
}
|
||||
|
||||
class ClassWithoutTypeParameter
|
||||
{
|
||||
public function __construct($param)
|
||||
{
|
||||
}
|
||||
public function __construct($param) {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user