Showing 126 of 126 total issues
The method clone_repository is not named in camelCase. Open
Open
protected function clone_repository(string $repository, string $path)
{
$git = new GitWrapper($this->executables['git']);
$git->setTimeout(300);
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method publish_assets is not named in camelCase. Open
Open
protected function publish_assets()
{
chdir($this->install_directory);
$this->runCommand($this->executables['php'] . ' artisan vendor:publish --force --all');
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method install_dependencies is not named in camelCase. Open
Open
protected function install_dependencies()
{
chdir($this->install_directory);
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method generate_encryption_key is not named in camelCase. Open
Open
protected function generate_encryption_key()
{
chdir($this->install_directory);
$this->runCommandWithOutput($this->executables['php'] . ' artisan key:generate', 'Encryption');
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
TODO found Open
Open
// TODO: Validate that we have the needed keys.
- Exclude checks
TODO found Open
Open
// TODO: Implement harden() method.
- Exclude checks