commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
SuggestionResultModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
21{
25 public function __construct(
26 ) {
27 }
28
29
30
31
35 public function by(string $key)
36 {
37 $data = $this->raw($key);
38 if (is_null($data)) {
39 return null;
40 }
41 if (preg_match(SuggestionResult::FIELD_PATTERN0, $key) === 1) {
43 return new SuggestionCollection($data);
44 }
45
46 return $data;
47 }
48}