for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* BooleanObject class.
*
* @package YetiForcePDF\Objects\Basic
* @copyright YetiForce Sp. z o.o
* @license MIT
* @author Rafal Pospiech <[email protected]>
*/
namespace YetiForcePDF\Objects\Basic;
* Class BooleanObject.
class BooleanObject extends \YetiForcePDF\Objects\PdfObject
{
* Basic object type (integer, string, boolean, dictionary etc..).
* @var string
protected $basicType = 'Boolean';
* Object name.
protected $name = 'Boolean';
* {@inheritdoc}
public function render(): string
return '';
}