public StorageComparer::validateSiteUuid()
Validates that the system.site::uuid in the source and target match.
Return value
bool TRUE if identical, FALSE if not.
Overrides StorageComparerInterface::validateSiteUuid
File
- core/lib/Drupal/Core/Config/StorageComparer.php, line 392
Class
- StorageComparer
- Defines a config storage comparer.
Namespace
Drupal\Core\Config
Code
1 2 3 4 5 | public function validateSiteUuid() { $source = $this ->sourceStorage->read( 'system.site' ); $target = $this ->targetStorage->read( 'system.site' ); return $source [ 'uuid' ] === $target [ 'uuid' ]; } |
Please login to continue.