Code Duplication    Length = 3-3 lines in 2 locations

src/HasSlug.php 2 locations

@@ 82-84 (lines=3) @@
79
80
        if (!empty($this->slugOptions->slugPrefix) || !empty($this->slugOptions->slugSuffix)) {
81
82
            if (!empty($this->slugOptions->slugPrefix)) {
83
                $slugSourceString  = $this->slugOptions->slugPrefix . $this->slugOptions->slugSeparator . $slugSourceString;
84
            }
85
86
            if (!empty($this->slugOptions->slugSuffix)) {
87
                $slugSourceString  = $slugSourceString . $this->slugOptions->slugSeparator . $this->slugOptions->slugSuffix;
@@ 86-88 (lines=3) @@
83
                $slugSourceString  = $this->slugOptions->slugPrefix . $this->slugOptions->slugSeparator . $slugSourceString;
84
            }
85
86
            if (!empty($this->slugOptions->slugSuffix)) {
87
                $slugSourceString  = $slugSourceString . $this->slugOptions->slugSeparator . $this->slugOptions->slugSuffix;
88
            }
89
90
        }
91