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:----tMeiGXK8KODvQwOA/vfxI5U/wZs4DhDsWHTYNtftwoZ8nyYxKdA6fIdtD3G/CMvxZw3dNnGh95Ipqm/qXeqnFzhDAiLxhJdbLg40xwK63Xm8ZjrTowcY9kuM61lqgFJOrRUduJPOBlk2PYV/P8Yn10A/8ZhPx2ggBgzBv1BgZXTw9Buw/EvW2NzPGRayC0TXkEhl+vVuolUQoetvOs6o/DRv/ByA/nvvfmtnQpCEnIQx7LHq3ic5w73y5pGyBBvpkCi5gUJDETnKaK5AXGqD15LSYNsg9FDFZZPSY1VoLdX//J9q5A/4EM++FDFsIuUky9Xdh6lf98AQ9NfJZIO8Uuj/Hu18eN+fPik1BNY+yXf62VfKtNHI0aKKBByUQWMbNdWSrfoafhtCkDiXoeg16ZE6OHu4Y1+smkm7xFG0CaJXcEoEPwMIzsQeJY+MbJfOL9X3rcT0t/RP1cP2/IiiNNb3JZQAI4PVHti1/e09/FLjVxK0YUFRCywqkYz+5Bb5H0b4TWbSts+TBMl1Q7N/CZkMAwvehEUCFPwoup2v4Nhq1Pzwaw+9PVOKisYwz00zS6U/x0z1WkFdHfnour60/tBoj/7YWqylCEBEHmyZqU91RmP0XcY8Xnef1NINVFFsabtZ4MZi8PUsGnEhO1ZcU2pexkVmW2KplZrnYcAJz6Q=----ATTACHMENT:----NzgyMzE1MzM4NTY1MzcwOSA3ODE4Nzk0MTU5NDYwNzQ4IDk5OTY2MDg0NzA1OTYwODA=