Showing 8 of 8 total issues
Method doIssue
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function doIssue($domains)
{
//validate domains
yield \Amp\resolve($this->checkDnsRecords($domains));
Method actionRevoke
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionRevoke($name = '') {
$acme = $this->getAcme();
try {
$infoSrc = $acme->info();
$certificates = [];
Method domainsSet
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function domainsSet($domains = [])
{
if (empty($domains) || $this->confirm("Edit the list of domains?", false)) {
//force get available domains
$domainsSearched = array_filter(Yii::$aliases, function ($data, $key) {
Function actionRevoke
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function actionRevoke($name = '') {
$acme = $this->getAcme();
try {
$infoSrc = $acme->info();
$certificates = [];
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function domainsSet
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
private function domainsSet($domains = [])
{
if (empty($domains) || $this->confirm("Edit the list of domains?", false)) {
//force get available domains
$domainsSearched = array_filter(Yii::$aliases, function ($data, $key) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function actionRenew
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function actionRenew($ttl = 1) {
$acme = $this->getAcme();
try {
$infoSrc = $acme->info();
/* @var Certificate $certificate */
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function getAcme
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function getAcme()
{
if (!\Yii::$app->has('acme')) {
if($this->interactive && $this->confirm("yii2-acme has default configuration. Advanced setup?", false)) {
$config = $this->advanced();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function doIssue
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function doIssue($domains)
{
//validate domains
yield \Amp\resolve($this->checkDnsRecords($domains));
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"