This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Lines::isSetter( string $line )

Determine if the given line looks like it’s setting a variable.


Parameters

$line

(Required)


Return

(bool)


Source

File: vendor/vlucas/phpdotenv/src/Lines.php

    private static function isSetter($line)
    {
        return strpos($line, '=') !== false;
    }