mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 03:35:01 +01:00
improve tests
This commit is contained in:
parent
82e39ab471
commit
732b677996
@ -15,5 +15,8 @@ class ActionClass
|
||||
public function someFunction()
|
||||
{
|
||||
$someChildValueObject = 'value';
|
||||
|
||||
$someChildValueObject = new SomeChildOfValueObject();
|
||||
$someChildValueObject = new SomeChildOfValueObject('value', 'anotherValue');
|
||||
}
|
||||
}
|
||||
|
@ -15,5 +15,8 @@ class ActionClass
|
||||
public function someFunction()
|
||||
{
|
||||
$someChildValueObject = new SomeChildOfValueObject('value');
|
||||
|
||||
$someChildValueObject = new SomeChildOfValueObject();
|
||||
$someChildValueObject = new SomeChildOfValueObject('value', 'anotherValue');
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user