elboletaire/Watimage

View on GitHub

Showing 28 of 57 total issues

File Image.php has 604 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
namespace Elboletaire\Watimage;

use Exception;
use Elboletaire\Watimage\Exception\ExtensionNotLoadedException;
Severity: Major
Found in src/Image.php - About 1 day to fix

    Image has 50 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Image
    {
        /**
         * Constant for the (deprecated) transparent color
         */
    Severity: Minor
    Found in src/Image.php - About 7 hrs to fix

      Function calculateSize has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function calculateSize($metadata)
          {
              if (!isset($this->size)) {
                  return;
              }
      Severity: Minor
      Found in src/Watermark.php - About 2 hrs to fix

      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

      Method color has 61 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function color($color)
          {
              if ($color === Image::COLOR_TRANSPARENT) {
                  return [
                      'r' => 0,
      Severity: Major
      Found in src/Normalize.php - About 2 hrs to fix

        File Normalize.php has 260 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        <?php
        namespace Elboletaire\Watimage;
        
        use Elboletaire\Watimage\Exception\InvalidArgumentException;
        
        
        Severity: Minor
        Found in src/Normalize.php - About 2 hrs to fix

          Function size has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
          Open

              public static function size($width, $height = null)
              {
                  if (!isset($height) && is_array($width)) {
                      $allowedKeys = [
                          [0, 1],
          Severity: Minor
          Found in src/Normalize.php - About 2 hrs to fix

          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 color has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
          Open

              public static function color($color)
              {
                  if ($color === Image::COLOR_TRANSPARENT) {
                      return [
                          'r' => 0,
          Severity: Minor
          Found in src/Normalize.php - About 1 hr to fix

          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

          Method calculateSize has 39 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              protected function calculateSize($metadata)
              {
                  if (!isset($this->size)) {
                      return;
                  }
          Severity: Minor
          Found in src/Watermark.php - About 1 hr to fix

            Method cropMeasures has 32 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public static function cropMeasures($ox, $oy = null, $dx = null, $dy = null)
                {
                    if (!isset($oy, $dx, $dy, $width, $height) && is_array($ox)) {
                        $values = $ox;
                        $allowedKeys = [
            Severity: Minor
            Found in src/Normalize.php - About 1 hr to fix

              Method size has 31 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public static function size($width, $height = null)
                  {
                      if (!isset($height) && is_array($width)) {
                          $allowedKeys = [
                              [0, 1],
              Severity: Minor
              Found in src/Normalize.php - About 1 hr to fix

                Function position has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                Open

                    public static function position($x, $y = null)
                    {
                        if (is_array($x)) {
                            if (isset($x['x']) || isset($x['y'])) {
                                extract($x);
                Severity: Minor
                Found in src/Normalize.php - About 1 hr to fix

                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

                Method convenienceFlip has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function convenienceFlip($type = 'horizontal')
                    {
                        $type = Normalize::flip($type);
                
                        $resampled = $this->imagecreate($this->width, $this->height);
                Severity: Minor
                Found in src/Image.php - About 1 hr to fix

                  Method crop has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public static function crop($x, $y = null, $width = null, $height = null)
                      {
                          if (!isset($y, $width, $height) && is_array($x)) {
                              $values = $x;
                              $allowedKeys = [
                  Severity: Minor
                  Found in src/Normalize.php - About 1 hr to fix

                    Function calculatePosition has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                    Open

                        protected function calculatePosition($metadata)
                        {
                            // Force center alignement if 'full' size has been set
                            if ($this->size == 'full') {
                                $this->position = 'center center';
                    Severity: Minor
                    Found in src/Watermark.php - About 55 mins to fix

                    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 cropMeasures has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public static function cropMeasures($ox, $oy = null, $dx = null, $dy = null)
                        {
                            if (!isset($oy, $dx, $dy, $width, $height) && is_array($ox)) {
                                $values = $ox;
                                $allowedKeys = [
                    Severity: Minor
                    Found in src/Normalize.php - About 55 mins to fix

                    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 crop has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public static function crop($x, $y = null, $width = null, $height = null)
                        {
                            if (!isset($y, $width, $height) && is_array($x)) {
                                $values = $x;
                                $allowedKeys = [
                    Severity: Minor
                    Found in src/Normalize.php - About 45 mins to fix

                    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 setWatermark has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public function setWatermark($options = [])
                        {
                            try {
                                if (!$this->watermark) {
                                    $this->watermark = new Watermark();
                    Severity: Minor
                    Found in src/Watimage.php - About 45 mins to fix

                    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

                    Method imagecopy has 6 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        protected function imagecopy($dstW, $dstH, $srcX = 0, $srcY = 0, $srcW = false, $srcH = false)
                    Severity: Minor
                    Found in src/Image.php - About 45 mins to fix

                      Method calculateCropMeasures has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          public function calculateCropMeasures($croppedFile, $ox, $oy = null, $dx = null, $dy = null)
                      Severity: Minor
                      Found in src/Image.php - About 35 mins to fix

                        Method vignetteEffect has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            protected function vignetteEffect($size, $level, $x, $y, &$rgb)
                        Severity: Minor
                        Found in src/Image.php - About 35 mins to fix
                          Severity
                          Category
                          Status
                          Source
                          Language