for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of Bldr.io
*
* (c) Aaron Scherer <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE
*/
namespace Bldr\Block\Miscellaneous\Service;
* @author Luis Cordova <[email protected]>
* @author Raul Rodriguez <[email protected]>
class EnvironmentVariableRepository
{
* @type string[]
protected $environmentVariables = [];
* @param string $environmentVariable
public function addEnvironmentVariable($environmentVariable)
$this->environmentVariables[] = $environmentVariable;
}
* @return string[]
public function getEnvironmentVariables()
return $this->environmentVariables;