Skip to content

Commit

Permalink
Merge pull request #1485 from NickSdot/patch-1
Browse files Browse the repository at this point in the history
fix: Warning: Constant VALET_* already defined in X
  • Loading branch information
mattstauffer authored May 31, 2024
2 parents cb1cc54 + 5699f34 commit 964ec7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
/**
* Define the user's "~/.config/valet" path.
*/
define('VALET_HOME_PATH', posix_getpwuid(fileowner(__FILE__))['dir'].'/.config/valet');
define('VALET_STATIC_PREFIX', '41c270e4-5535-4daa-b23e-c269744c2f45');
defined('VALET_HOME_PATH') or define('VALET_HOME_PATH', posix_getpwuid(fileowner(__FILE__))['dir'].'/.config/valet');
defined('VALET_STATIC_PREFIX') or define('VALET_STATIC_PREFIX', '41c270e4-5535-4daa-b23e-c269744c2f45');

/**
* Load the Valet configuration.
Expand Down

0 comments on commit 964ec7a

Please sign in to comment.