84 lines
1.2 KiB
PHP
84 lines
1.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Calendar;
|
|
|
|
class Source
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $id;
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $uri;
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $color;
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getId(): ?string
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* @param string $id
|
|
* @return Source
|
|
*/
|
|
public function setId(string $id)
|
|
{
|
|
$this->id = $id;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getUri(): ?string
|
|
{
|
|
return $this->uri;
|
|
}
|
|
|
|
/**
|
|
* @param string $uri
|
|
* @return Source
|
|
*/
|
|
public function setUri(string $uri)
|
|
{
|
|
$this->uri = $uri;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getColor(): ?string
|
|
{
|
|
return $this->color;
|
|
}
|
|
|
|
/**
|
|
* @param string $color
|
|
* @return Source
|
|
*/
|
|
public function setColor(string $color)
|
|
{
|
|
$this->color = $color;
|
|
|
|
return $this;
|
|
}
|
|
}
|