for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by gerk on 29.09.16 15:51
*/
namespace PeekAndPoke\Component\MetaCore\DomainModel\Docs;
use PeekAndPoke\Component\Slumber\Annotation\Slumber;
* @author Karsten J. Gerber <[email protected]>
class Doc
{
* @var string
*
* @Slumber\AsString()
private $summary;
private $description;
* Doc constructor.
* @param string $summary
* @param string $description
public function __construct($summary, $description)
$this->summary = $summary;
$this->description = $description;
}
* @return string
public function getSummary()
return $this->summary;
public function getDescription()
return $this->description;