Code Duplication    Length = 22-22 lines in 2 locations

src/Helpers/String.php 2 locations

@@ 569-590 (lines=22) @@
566
     *
567
     * @return string final output
568
     */
569
    public static function squote($uString, $uCover = false)
570
    {
571
        // if ($uString === null) {
572
        //     return "null";
573
        // }
574
575
        if ($uCover) {
576
            return "'" .
577
                str_replace(
578
                    self::$defaults["squote_replacement"][0],
579
                    self::$defaults["squote_replacement"][1],
580
                    $uString
581
                ) .
582
                "'";
583
        }
584
585
        return str_replace(
586
            self::$defaults["squote_replacement"][0],
587
            self::$defaults["squote_replacement"][1],
588
            $uString
589
        );
590
    }
591
592
    /**
593
     * Escapes double quotes in a string
@@ 600-621 (lines=22) @@
597
     *
598
     * @return string final output
599
     */
600
    public static function dquote($uString, $uCover = false)
601
    {
602
        // if ($uString === null) {
603
        //     return "null";
604
        // }
605
606
        if ($uCover) {
607
            return "'" .
608
            str_replace(
609
                self::$defaults["dquote_replacement"][0],
610
                self::$defaults["dquote_replacement"][1],
611
                $uString
612
            ) .
613
            "'";
614
        }
615
616
        return str_replace(
617
            self::$defaults["dquote_replacement"][0],
618
            self::$defaults["dquote_replacement"][1],
619
            $uString
620
        );
621
    }
622
623
    /**
624
     * Escapes single quotes in a set of strings