Skip to content

Commit ef2e36d

Browse files
committed
Add missing property and constructor for Geocodeable
1 parent 7dade60 commit ef2e36d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Mapping/Annotations/Geocodeable.php

+9
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,13 @@
2020
*/
2121
class Geocodeable
2222
{
23+
/**
24+
* @var string
25+
*/
26+
public $provider = null;
27+
28+
public function __construct(array $options = [], string $provider = null)
29+
{
30+
$this->provider = $options['provider'] ?? $provider;
31+
}
2332
}

0 commit comments

Comments
 (0)