for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Bigwhoop\Trumpet\Config;
final class Presentation
{
/** @var string */
public $title = '';
public $subtitle = '';
/** @var Date */
public $date;
/** @var Author[] */
public $authors = [];
/** @var Slides */
public $slides;
public $license = '';
/** @var mixed */
public $themeSettings;
public function __construct()
$this->slides = new Slides();
}