public DateTimePlus::hasErrors()
Detects if there were errors in the processing of this date.
Return value
bool TRUE if there were errors in the processing of this date, FALSE otherwise.
File
- core/lib/Drupal/Component/Datetime/DateTimePlus.php, line 462
Class
- DateTimePlus
- Wraps DateTime().
Namespace
Drupal\Component\Datetime
Code
1 2 3 | public function hasErrors() { return (boolean) count ( $this ->errors); } |
Please login to continue.