We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1db592c commit 4f7ec80Copy full SHA for 4f7ec80
2 files changed
src/Mapper/AnonymousMapping.php
@@ -12,7 +12,7 @@ public function __construct(array $definition)
12
parent::__construct();
13
}
14
15
- protected function createMap()
+ protected function createMapping()
16
{
17
return $this->definition;
18
src/Mapper/Mapping.php
@@ -11,13 +11,13 @@ abstract class Mapping extends \ArrayObject
11
*/
public function __construct()
- parent::__construct($this->createMap());
+ parent::__construct($this->createMapping());
/**
* Creates a mapping of key names and mappable values.
19
*
20
* @return array Mapping.
21
22
- abstract protected function createMap();
+ abstract protected function createMapping();
23
0 commit comments