for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yoanm\ComposerConfigManager\Application\Updater;
class PlainValueUpdater
{
/**
* @param string $baseValue
* @param string $newValue
*
* @return string
*/
public function update($newValue, $baseValue)
return $newValue ? $newValue : $baseValue;
}