@@ -23,7 +23,7 @@ class SchemaProcessor
23
23
/** @var GeneratorConfiguration */
24
24
protected $ generatorConfiguration ;
25
25
/** @var RenderQueue */
26
- protected $ renderProxy ;
26
+ protected $ renderQueue ;
27
27
/** @var string */
28
28
protected $ source ;
29
29
/** @var string */
@@ -43,18 +43,18 @@ class SchemaProcessor
43
43
* @param string $source
44
44
* @param string $destination
45
45
* @param GeneratorConfiguration $generatorConfiguration
46
- * @param RenderQueue $renderProxy
46
+ * @param RenderQueue $renderQueue
47
47
*/
48
48
public function __construct (
49
49
string $ source ,
50
50
string $ destination ,
51
51
GeneratorConfiguration $ generatorConfiguration ,
52
- RenderQueue $ renderProxy
52
+ RenderQueue $ renderQueue
53
53
) {
54
54
$ this ->source = $ source ;
55
55
$ this ->destination = $ destination ;
56
56
$ this ->generatorConfiguration = $ generatorConfiguration ;
57
- $ this ->renderProxy = $ renderProxy ;
57
+ $ this ->renderQueue = $ renderQueue ;
58
58
}
59
59
60
60
/**
@@ -162,7 +162,7 @@ public function generateClassFile(string $classPath, string $className, Schema $
162
162
[$ this ->destination , str_replace ('\\' , DIRECTORY_SEPARATOR , $ classPath ), $ className ]
163
163
) . '.php ' ;
164
164
165
- $ this ->renderProxy ->addRenderJob (new RenderJob ($ fileName , $ classPath , $ className , $ schema ));
165
+ $ this ->renderQueue ->addRenderJob (new RenderJob ($ fileName , $ classPath , $ className , $ schema ));
166
166
167
167
if ($ this ->generatorConfiguration ->isOutputEnabled ()) {
168
168
// @codeCoverageIgnoreStart
0 commit comments