mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 05:03:31 +03:00
bugfix var ref
This commit is contained in:
parent
fc9c5e85aa
commit
4ea6cbe839
2 changed files with 5 additions and 1 deletions
|
@ -195,7 +195,7 @@ class FindBreakingChanges
|
|||
$newTypeName = $newTypeDefinition->name;
|
||||
$breakingChanges[] = [
|
||||
'type' => self::BREAKING_CHANGE_NON_NULL_ARG_ADDED,
|
||||
'description' => "A non-null arg ${$newArgName} on ${newTypeName}->${fieldName} was added."
|
||||
'description' => "A non-null arg ${newArgName} on ${newTypeName}->${fieldName} was added."
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -685,4 +685,8 @@ class FindBreakingChangesTest extends \PHPUnit_Framework_TestCase
|
|||
|
||||
$this->assertEquals($expectedChanges, FindBreakingChanges::findArgChanges($oldSchema, $newSchema)['breakingChanges']);
|
||||
}
|
||||
|
||||
public function testDetectsFieldArgumentTypeChange() {
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue