for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the league/commonmark package.
*
* (c) Colin O'Dell <[email protected]>
* Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
* - (c) John MacFarlane
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace League\CommonMark\Extension\CommonMark\Node\Block;
use League\CommonMark\Node\Block\AbstractBlock;
use League\CommonMark\Node\StringContainerInterface;
class FencedCode extends AbstractBlock implements StringContainerInterface
{
/**
* @var string
protected $info;
protected $literal = '';
* @var int
protected $length;
protected $char;
protected $offset;
* @param int $length
* @param string $char
* @param int $offset
public function __construct(int $length, string $char, int $offset)
$this->length = $length;
$this->char = $char;
$this->offset = $offset;
}
* @return string
public function getInfo(): string
return $this->info;
* @return string[]
public function getInfoWords(): array
return \preg_split('/\s+/', $this->info) ?: [];
public function setInfo(string $info): void
$this->info = $info;
public function getLiteral(): string
return $this->literal;
public function setLiteral(string $literal): void
$this->literal = $literal;
public function getChar(): string
return $this->char;
* @return $this
public function setChar(string $char): self
return $this;
* @return int
public function getLength(): int
return $this->length;
public function setLength(int $length): self
public function getOffset(): int
return $this->offset;
public function setOffset(int $offset): self