for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sugarcrm\UpgradeSpec\Data\Provider\SourceCode;
use Sugarcrm\UpgradeSpec\Data\Exception\WrongProviderException;
use Sugarcrm\UpgradeSpec\Context\Upgrade;
class LocalGitRepository implements SourceCodeProviderInterface
{
/**
* Gets the list of potentially broken customizations (changed and deleted files)
*
* @param Upgrade $context
* @return mixed
NoType
This check looks for the generic type array as a return type and suggests a more specific type. This type is inferred from the actual code.
array
* @throws WrongProviderException
*/
public function getPotentiallyBrokenCustomizations(Upgrade $context)
throw new WrongProviderException('Not implemented');
}
* Gets the lists of upgrade steps for the given source
public function getUpgradeSteps(Upgrade $context)
This check looks for the generic type
array
as a return type and suggests a more specific type. This type is inferred from the actual code.