@@ -13,7 +13,7 @@ class Configuration {
1313 /**
1414 * Create a new Valet configuration class instance.
1515 *
16- * @param Filesystem $filesystem
16+ * @param Filesystem $filesystem
1717 * @return void
1818 */
1919 public function __construct (Filesystem $ files ) {
@@ -176,8 +176,6 @@ public function uninstall() {
176176 /**
177177 * Add the given php path to the configuration.
178178 *
179- * @param string $path
180- * @param bool $prepend
181179 * @return void
182180 */
183181 public function addDefaultPhp () {
@@ -193,7 +191,7 @@ public function addDefaultPhp() {
193191 /**
194192 * Get the php configuration by path.
195193 *
196- * @param string $phpPath
194+ * @param string $phpPath
197195 * @return mixed
198196 */
199197 public function getPhp ($ phpPath ) {
@@ -209,7 +207,7 @@ public function getPhp($phpPath) {
209207 /**
210208 * Get the php configuration by version.
211209 *
212- * @param string $phpVersion
210+ * @param string $phpVersion
213211 * @return mixed
214212 */
215213 public function getPhpByVersion ($ phpVersion ) {
@@ -253,7 +251,7 @@ public function getPhpFullVersionByAlias($phpVersionAlias) {
253251 /**
254252 * Add the given php path to the configuration.
255253 *
256- * @param string $phpPath
254+ * @param string $phpPath
257255 * @return mixed
258256 */
259257 public function addPhp ($ phpPath ) {
@@ -307,7 +305,7 @@ public function addPhp($phpPath) {
307305 /**
308306 * Remove the given php path from the configuration.
309307 *
310- * @param string $phpPath
308+ * @param string $phpPath
311309 * @return mixed
312310 */
313311 public function removePhp ($ phpPath ) {
@@ -345,8 +343,8 @@ public function removePhp($phpPath) {
345343 /**
346344 * Add the given path to the configuration.
347345 *
348- * @param string $path
349- * @param bool $prepend
346+ * @param string $path
347+ * @param bool $prepend
350348 * @return void
351349 */
352350 public function addPath (string $ path , bool $ prepend = false ) {
@@ -361,7 +359,7 @@ public function addPath(string $path, bool $prepend = false) {
361359 /**
362360 * Prepend the given path to the configuration.
363361 *
364- * @param string $path
362+ * @param string $path
365363 * @return void
366364 */
367365 public function prependPath (string $ path ) {
@@ -372,7 +370,7 @@ public function prependPath(string $path) {
372370 * Remove the given path from the configuration.
373371 * Used by `valet forget`
374372 *
375- * @param string $path
373+ * @param string $path
376374 * @return void
377375 */
378376 public function removePath (string $ path ) {
@@ -421,8 +419,8 @@ public function read(): array {
421419 /**
422420 * Get an item from the configuration file using "dot" notation.
423421 *
424- * @param string|int|null $key
425- * @param mixed $default
422+ * @param string|int|null $key
423+ * @param mixed $default
426424 * @return mixed
427425 */
428426 public function get ($ key , $ default = null ) {
@@ -432,8 +430,8 @@ public function get($key, $default = null) {
432430 /**
433431 * Update a specific key in the configuration file.
434432 *
435- * @param string $key
436- * @param mixed $value
433+ * @param string $key
434+ * @param mixed $value
437435 * @return array
438436 */
439437 public function updateKey (string $ key , $ value ): array {
@@ -447,7 +445,7 @@ public function updateKey(string $key, $value): array {
447445 /**
448446 * Write the given configuration to disk.
449447 *
450- * @param array $config
448+ * @param array $config
451449 * @return void
452450 */
453451 public function write (array $ config ) {
@@ -469,7 +467,7 @@ public function path(): string {
469467 /**
470468 * Get the Valet home path.
471469 *
472- * @param string $path
470+ * @param string $path
473471 * @return string
474472 */
475473 protected function valetHomePath (string $ path = '' ): string {
0 commit comments