ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilWebDAVCommonINodeFunctionsTrait.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 {
23  protected function retrieveLastModifiedAsIntFromObjectLastUpdateString(string $last_update): ?int
24  {
25  $last_update_int = strtotime($last_update);
26  if ($last_update_int !== false) {
27  return $last_update_int;
28  }
29 
30  return null;
31  }
32 }