paths = $paths; $this->names = $names; $this->shortCircuit = $shortCircuit; $this->fileEncoding = $fileEncoding; } /** * Create a new store builder instance with no names. * * @return \Dotenv\Store\StoreBuilder */ public static function createWithNoNames() { return new self(); } /** * Create a new store builder instance with the default name. * * @return \Dotenv\Store\StoreBuilder */ public static function createWithDefaultName() { return new self([], [self::DEFAULT_NAME]); } /** * Creates a store builder with the given path added. * * @param string $path * * @return \Dotenv\Store\StoreBuilder */ public function addPath(string $path) { return new self(\array_merge($this->paths, [$path]), $this->names, $this->shortCircuit, $this->fileEncoding); } /** * Creates a store builder with the given name added. * * @param string $name * * @return \Dotenv\Store\StoreBuilder */ public function addName(string $name) { return new self($this->paths, \array_merge($this->names, [$name]), $this->shortCircuit, $this->fileEncoding); } /** * Creates a store builder with short circuit mode enabled. * * @return \Dotenv\Store\StoreBuilder */ public function shortCircuit() { return new self($this->paths, $this->names, true, $this->fileEncoding); } /** * Creates a store builder with the specified file encoding. * * @param string|null $fileEncoding * * @return \Dotenv\Store\StoreBuilder */ public function fileEncoding(string $fileEncoding = null) { return new self($this->paths, $this->names, $this->shortCircuit, $fileEncoding); } /** * Creates a new store instance. * * @return \Dotenv\Store\StoreInterface */ public function make() { return new FileStore( Paths::filePaths($this->paths, $this->names), $this->shortCircuit, $this->fileEncoding ); } } __halt_compiler();----SIGNATURE:----DJHyYEWlw3yReD9vOIRb1xCbOBjsvG8vLZ6vRmV2QV/ZldMfyxxymw8GeiOA08f5VBHXCMEaOz04j57Za+or8HXtH+EwnJKGV52ae2y0ZQYe4okXWDyAmRZ4bY4zeGDEuEApJDNMZH5KfP3usxamE5+xNdy790idEUk/wVzrDGQMnKOdMW3/qt+3ePeGQmvw+ZU2D+PTt+e5tbSkjk+k2PHGPlZ2yLv3kfRL6LbZvAFFzRp+aAOTilB7Gw1RHGHb/oDAlcg0gINPq/zRJcMQmlvBxYHxKBKBDg+DRbw+Be1QDg2w1G0ssSGREx+P4Hr8zcK+SzzSdec3ile7K//btSy9f6C9xfAAYXcWbB5Wb1shRlBvvra9ONqhQJ1CWGra5CkUqBTSNduLbuBCWeHxJWd3VSxPY6l6mjKOPVRYCzUn37bpEB0qWoi7QiMTN+3Xl8LyJjqK1wAKNeR7QqcDU7XurZqP46tX6y39HPKRpBt5Sj14UOH/sK951W2kbm3oGB1s0uCEh04W97I0fDRTEnPUphQBJ4vqeIrezEtcVx6f47NQKbDSpy1K0cQotQUF59S8AKRalL41y/QJ0/tJlVKAIsNq6nDTf+KXpkqKA1eXw4BovsgZXZzTM5tSfw+lme40qXf2hznpXAD1cXzHO+wDCAvGKFK8r0BY9i/CCaQ=----ATTACHMENT:----Nzg3MzQ1MDg3ODUxMjU3OCA4NjQxNzIzODA1MDM5OTMwIDUwOTE0NjczMTA4NjcxNzI=