We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2ca4f1 commit f8677fdCopy full SHA for f8677fd
src/Structure/ClassStructure.php
@@ -29,26 +29,6 @@ public static function schema()
29
return $schema;
30
}
31
32
- /**
33
- * @return Schema
34
- */
35
- public static function metaSchema()
36
- {
37
- static $schemas = array();
38
- $className = get_called_class();
39
- $schema = &$schemas[$className];
40
-
41
- if (null === $schema) {
42
- $schema = new Schema();
43
- $properties = new Properties();
44
- $schema->properties = $properties;
45
- $schema->objectItemClass = get_class($schema);
46
- static::setUpProperties($properties, $schema);
47
- }
48
49
- return $schema;
50
51
52
/**
53
* @return Properties|static
54
*/
0 commit comments