create() 공개 정적인 메소드

array( type => 'string' | 'children', selector => 'img.cover', [attribute] => 'src' )
또한 보기: StringGetter
또한 보기: ChildrenGetter
또한 보기: IntegerGetter
또한 보기: ElementGetter
또한 보기: ConstantGetter
또한 보기: NextSiblingGetter
또한 보기: ExistsGetter
또한 보기: JSONGetter
또한 보기: XpathGetter
public static create ( string[] $getter_configuration ) : Facebook\InstantArticles\Transformer\Getters\AbstractGetter
$getter_configuration string[] that maps the properties for getter
리턴 Facebook\InstantArticles\Transformer\Getters\AbstractGetter
 /**
  * @param $property
  * @param array $value
  *
  * @return $this
  */
 public function withProperty($property, $value)
 {
     if ($value) {
         $this->properties[$property] = GetterFactory::create($value);
     }
     return $this;
 }
 public function createFrom($properties)
 {
     foreach ($properties['children'] as $getter_configuration) {
         $this->children[] = GetterFactory::create($getter_configuration);
     }
     return $this;
 }