File tree Expand file tree Collapse file tree 2 files changed +2
-17
lines changed Expand file tree Collapse file tree 2 files changed +2
-17
lines changed Original file line number Diff line number Diff line change 2
2
3
3
#### Unreleased
4
4
- PHP version required: 7.4+
5
+ - Removed deprecated ` Type::getInternalTypes() `
5
6
- Remove deprecated ` GraphQL::execute() `
6
7
8
+
7
9
#### 14.6.1
8
10
9
11
Fix:
Original file line number Diff line number Diff line change 18
18
use function implode ;
19
19
use function in_array ;
20
20
use function preg_replace ;
21
- use function trigger_error ;
22
-
23
- use const E_USER_DEPRECATED ;
24
21
25
22
/**
26
23
* Registry of standard GraphQL types
@@ -175,20 +172,6 @@ public static function getStandardTypes()
175
172
];
176
173
}
177
174
178
- /**
179
- * @deprecated Use method getStandardTypes() instead
180
- *
181
- * @return Type[]
182
- *
183
- * @codeCoverageIgnore
184
- */
185
- public static function getInternalTypes ()
186
- {
187
- trigger_error (__METHOD__ . ' is deprecated. Use Type::getStandardTypes() instead ' , E_USER_DEPRECATED );
188
-
189
- return self ::getStandardTypes ();
190
- }
191
-
192
175
/**
193
176
* @param array<string, ScalarType> $types
194
177
*/
You can’t perform that action at this time.
0 commit comments