optimize proxy implementation

This commit is contained in:
DavidBadura
2015-07-08 23:29:50 +00:00
parent 79e63251f4
commit 95870fc7a2
4 changed files with 162 additions and 35 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace DavidBadura\Taskwarrior\Proxy;
/**
* @author David Badura <d.a.badura@gmail.com>
*/
class UuidContainer
{
/**
* @var string
*/
protected $uuid;
/**
* @param string $uuid
*/
public function __construct($uuid)
{
$this->uuid = $uuid;
}
/**
* @return string
*/
public function getUuid()
{
return $this->uuid;
}
}