for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is a part of Sculpin.
*
* (c) Dragonfly Development Inc.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symplify\PHP7_Sculpin\Converter;
use Symplify\PHP7_Sculpin\Source\SourceInterface;
final class SourceConverterContext
{
/**
* @var SourceInterface
private $source;
public function __construct(SourceInterface $source)
$this->source = $source;
}
public function content() : string
return $this->source->content();
public function setContent(string $content)
$this->source->setContent($content);