for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheAentMachine\AentDockerCompose\DockerCompose;
class DockerComposeFile
{
/** @var \SplFileInfo */
private $file;
/**
* DockerComposeFile constructor.
* @param \SplFileInfo $file
*/
public function __construct(\SplFileInfo $file)
$this->file = $file;
}
* @return string
public function getFilename(): string
return $this->file->getFilename();