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:----dX29gaYsZ4IMbwZVIt6xSRRERLI4SGIOY5Xu5nD7/JZuXbBBc3BGDWM52b2KNlgSxIwJFV7wHiscLhG61KPBuQ1wtgu3VMfYtgEU9R9QeyhNA4RnQxP5l2fpuKiy7NSHwcM4fsoHMIsyWn+y8jsafFGCMp/EFDRFHxijuC9fGlAGTzc6YU5n4PH4RfmXiJ8gU9VHhFnjfo9Escbx7jayodVYW5DimB+odLB0OwQi1SDWtmmJ0fkCgnRaIjy5/HJ8P6lR2MP+3FPeCvFCtkYoP3EBWHLD/YpWnJguuc3UcnAzdO7bs7+uV3RPIJDlpVoTzajc2q1Wg61WUNd1hm0K04oVETsKnOK2GDOo0YEKNUtYS7pUYVejHPUO4FK7O8f5AqMPiV5xYnKxgdqEY7im0yUsrIheIhzKYa3nf8sqYU2oHqwrn/qbM6rAU1ajsNb5LJ6aV2V5utN5RfAhk3W9eNal7SNajD6IM9574lDHkwTgdF8fXiD0iGcOfFDkkmYebDqjRwxUVhroMCcltZv1nV7hUPBKKtkuhnwVbOa5zid16Lpr7KKqTPqglYm/p2ERU/pbUGnHzAvwiXSXm4Qh4iG0nkZakk+QiJPpSTpOMU7KPAOab+ZhKO/o/6abthLneSTVq5fIvWIKsh8J4OQS9z/m872EFN5Fia5/7ibTZ2s=----ATTACHMENT:----ODA4OTQzNTUwODcyNTE0NyA5OTA2NTQ4Nzk3MDg0MzQ1IDIyMzY3MjE1NDQ1NTAxNjY=