@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | /** |
| 176 | 176 | * Matches an identifer against a machine name exactly. |
| 177 | 177 | * |
| 178 | - * @param string $identifer |
|
| 178 | + * @param string $identifier |
|
| 179 | 179 | * The human-friendly name of the target. |
| 180 | 180 | * @param string $machineName |
| 181 | 181 | * The machine name of the candidate. |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | /** |
| 194 | 194 | * Matches an identifer against a label exactly. |
| 195 | 195 | * |
| 196 | - * @param string $identifer |
|
| 196 | + * @param string $identifier |
|
| 197 | 197 | * The human-friendly name of the target. |
| 198 | 198 | * @param string $machineName |
| 199 | 199 | * The machine name of the candidate. |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | /** |
| 212 | 212 | * Matches an identifer against a machine name removing the prefix. |
| 213 | 213 | * |
| 214 | - * @param string $identifer |
|
| 214 | + * @param string $identifier |
|
| 215 | 215 | * The human-friendly name of the target. |
| 216 | 216 | * @param string $machineName |
| 217 | 217 | * The machine name of the candidate. |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | /** |
| 233 | 233 | * Matches an identifer against a machine name removing underscores from it. |
| 234 | 234 | * |
| 235 | - * @param string $identifer |
|
| 235 | + * @param string $identifier |
|
| 236 | 236 | * The human-friendly name of the target. |
| 237 | 237 | * @param string $machineName |
| 238 | 238 | * The machine name of the candidate. |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | /** |
| 252 | 252 | * Matches an identifer against a machine name, removing prefix & underscores. |
| 253 | 253 | * |
| 254 | - * @param string $identifer |
|
| 254 | + * @param string $identifier |
|
| 255 | 255 | * The human-friendly name of the target. |
| 256 | 256 | * @param string $machineName |
| 257 | 257 | * The machine name of the candidate. |
@@ -18,13 +18,13 @@ discard block |
||
| 18 | 18 | * URI that is accessing Drupal. Defaults to 'default'. |
| 19 | 19 | * @param \Drupal\Component\Utility\Random $random |
| 20 | 20 | * Random string generator. |
| 21 | - * @param string $projectPluginRoot |
|
| 22 | - * The directory to search for additional project-specific driver plugins. |
|
| 21 | + * @return void |
|
| 23 | 22 | */ |
| 24 | 23 | public function __construct($drupal_root, $uri = 'default', Random $random = NULL); |
| 25 | 24 | |
| 26 | 25 | /** |
| 27 | 26 | * Return random generator. |
| 27 | + * @return Random |
|
| 28 | 28 | */ |
| 29 | 29 | public function getRandom(); |
| 30 | 30 | |
@@ -192,6 +192,7 @@ discard block |
||
| 192 | 192 | |
| 193 | 193 | /** |
| 194 | 194 | * Clears the static caches. |
| 195 | + * @return void |
|
| 195 | 196 | */ |
| 196 | 197 | public function clearStaticCaches(); |
| 197 | 198 | |
@@ -7,14 +7,9 @@ |
||
| 7 | 7 | use Drupal\Driver\Wrapper\Entity\DriverEntityWrapperInterface; |
| 8 | 8 | use Drupal\field\Entity\FieldStorageConfig; |
| 9 | 9 | use Drupal\language\Entity\ConfigurableLanguage; |
| 10 | -use Drupal\node\Entity\Node; |
|
| 11 | 10 | use Drupal\node\NodeInterface; |
| 12 | 11 | use Drupal\Core\Entity\EntityInterface; |
| 13 | -use Drupal\taxonomy\Entity\Term; |
|
| 14 | -use Drupal\taxonomy\TermInterface; |
|
| 15 | 12 | use Symfony\Component\HttpFoundation\Request; |
| 16 | -use Drupal\Driver\Plugin\DriverFieldPluginManager; |
|
| 17 | -use Drupal\Driver\Wrapper\Field\DriverFieldDrupal8; |
|
| 18 | 13 | use Drupal\Driver\Wrapper\Entity\DriverEntityDrupal8; |
| 19 | 14 | |
| 20 | 15 | /** |
@@ -2,11 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Drupal\Driver\Plugin; |
| 4 | 4 | |
| 5 | -use Drupal\Component\Plugin\PluginBase; |
|
| 6 | 5 | use Drupal\Driver\Exception\Exception; |
| 7 | 6 | use Drupal\Driver\Wrapper\Field\DriverFieldInterface; |
| 8 | -use Symfony\Component\DependencyInjection\ContainerInterface; |
|
| 9 | -use Drupal\Core\Plugin\ContainerFactoryPluginInterface; |
|
| 10 | 7 | use Drupal\Core\Entity\EntityInterface; |
| 11 | 8 | use Drupal\Driver\Wrapper\Field\DriverFieldDrupal8; |
| 12 | 9 | use Drupal\Driver\Wrapper\Entity\DriverEntityInterface; |
@@ -496,6 +496,7 @@ |
||
| 496 | 496 | * Sets the provisional entity plugin. |
| 497 | 497 | * |
| 498 | 498 | * @param \Drupal\Driver\Plugin\DriverEntityPluginInterface |
| 499 | + * @param DriverEntityPluginInterface $plugin |
|
| 499 | 500 | */ |
| 500 | 501 | protected function setProvisionalPlugin($plugin) |
| 501 | 502 | { |
@@ -7,7 +7,6 @@ |
||
| 7 | 7 | use Drupal\Driver\Plugin\DriverEntityPluginManager; |
| 8 | 8 | use Drupal\Driver\Plugin\DriverPluginManagerInterface; |
| 9 | 9 | use Drupal\Driver\Wrapper\Field\DriverFieldInterface; |
| 10 | -use Drupal\Driver\Wrapper\Field\DriverFieldDrupal8; |
|
| 11 | 10 | use Drupal\Component\Utility\DriverNameMatcher; |
| 12 | 11 | |
| 13 | 12 | /** |
@@ -2,7 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Drupal\Driver\Wrapper\Entity; |
| 4 | 4 | |
| 5 | -use Drupal\Driver\Wrapper\Field\DriverFieldDrupal8; |
|
| 6 | 5 | use Drupal\Driver\Plugin\DriverPluginManagerInterface; |
| 7 | 6 | use Drupal\Component\Utility\DriverNameMatcher; |
| 8 | 7 | |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | /** |
| 64 | 64 | * Sets the entity bundle. |
| 65 | 65 | * |
| 66 | - * @param string $identifier |
|
| 66 | + * @param string $identifer |
|
| 67 | 67 | * A string identifying the entity bundle. |
| 68 | 68 | * |
| 69 | 69 | * @return $this |
@@ -88,6 +88,7 @@ discard block |
||
| 88 | 88 | * |
| 89 | 89 | * @param \Drupal\Driver\Plugin\DriverEntityPluginInterface $plugin |
| 90 | 90 | * An instantiated driver entity plugin matching this entity. |
| 91 | + * @return DriverEntityBase |
|
| 91 | 92 | */ |
| 92 | 93 | public function setFinalPlugin($plugin); |
| 93 | 94 | } |
@@ -74,8 +74,6 @@ |
||
| 74 | 74 | * @param mixed |
| 75 | 75 | * Raw values for the field. Typically an array, one for each value of a |
| 76 | 76 | * multivalue field, but can be single. Values are typically string. |
| 77 | - * @param string $fieldName |
|
| 78 | - * The machine name of the field. |
|
| 79 | 77 | * @param string $entityType |
| 80 | 78 | * The machine name of the entity type the field is attached to. |
| 81 | 79 | * @param string $bundle |
@@ -49,6 +49,12 @@ |
||
| 49 | 49 | */ |
| 50 | 50 | protected $version = 8; |
| 51 | 51 | |
| 52 | + /** |
|
| 53 | + * @param string $fieldName |
|
| 54 | + * @param string $entityType |
|
| 55 | + * @param string $bundle |
|
| 56 | + * @param string $projectPluginRoot |
|
| 57 | + */ |
|
| 52 | 58 | public function __construct( |
| 53 | 59 | $rawValues, |
| 54 | 60 | $fieldName, |
@@ -2,7 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Drupal\Driver\Wrapper\Field; |
| 4 | 4 | |
| 5 | -use Drupal\Driver\Plugin\DriverPluginManagerInterface; |
|
| 6 | 5 | use Drupal\Core\Config\Entity\ConfigEntityInterface; |
| 7 | 6 | use Drupal\Component\Utility\DriverNameMatcher; |
| 8 | 7 | |