public function ConfigPatch::isEmpty in Configuration Split 2.0.x
Check if the patch is empty.
Return value
bool The patches' emptiness.
File
- src/
Config/ ConfigPatch.php, line 105
Class
- ConfigPatch
- The config patch value object.
Namespace
Drupal\config_split\ConfigCode
public function isEmpty() : bool {
return empty($this->added) && empty($this->removed);
}