for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace POData\ObjectModel;
abstract class ODataContainerBase
{
/**
* Entry id.
*
* @var string|null
*/
public $id;
* Feed title.
* @var ODataTitle
public $title;
* Last updated timestamp.
public $updated;
* Service Base URI.
public $baseURI;
* ODataContainerBase constructor.
* @param string|null $id
* @param ODataTitle $title
* @param string|null $updated
* @param string|null $baseURI
public function __construct(?string $id, ?ODataTitle $title, ?string $updated, ?string $baseURI)
$this
->setId($id)
->setTitle($title)
->setUpdated($updated)
->setBaseURI($baseURI);
}
* @return string|null
public function getId(): ?string
return $this->id;
* @return self
public function setId(?string $id): self
$this->id = $id;
return $this;
* @return ODataTitle|null
public function getTitle(): ?ODataTitle
return $this->title;
* @param ODataTitle|null $title
public function setTitle(?ODataTitle $title): self
$this->title = $title;
public function getUpdated(): ?string
return $this->updated;
* @return ODataEntry
public function setUpdated(?string $updated): self
$this->updated = $updated;
public function getBaseURI(): ?string
return $this->baseURI;
public function setBaseURI(?string $baseURI): self
$this->baseURI = $baseURI;