ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AbstractMediaWithPath.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 abstract class AbstractMediaWithPath extends AbstractMedia
27 {
28  public function withContent(string $content): self
29  {
30  $clone = clone $this;
31  $clone->content = $content;
32  return $clone;
33  }
34 }