function Diff::isEmpty
Same name in other branches
- 9 core/lib/Drupal/Component/Diff/Diff.php \Drupal\Component\Diff\Diff::isEmpty()
- 8.9.x core/lib/Drupal/Component/Diff/Diff.php \Drupal\Component\Diff\Diff::isEmpty()
Check for empty diff.
Return value
bool True iff two sequences were identical.
Deprecated
in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement.
See also
https://www.drupal.org/node/3337942
File
-
core/
lib/ Drupal/ Component/ Diff/ Diff.php, line 75
Class
- Diff
- Class representing a 'diff' between two sequences of strings.
Namespace
Drupal\Component\DiffCode
public function isEmpty() {
@trigger_error(__METHOD__ . '() is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3337942', E_USER_DEPRECATED);
foreach ($this->edits as $edit) {
if ($edit->type != 'copy') {
return FALSE;
}
}
return TRUE;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.