Skip to content

Commit

Permalink
fix: Remove mixed type (#5837)
Browse files Browse the repository at this point in the history
  • Loading branch information
BramDriesen authored Dec 12, 2023
1 parent 42794ce commit 5481ed1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Drupal/Commands/config/ConfigCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -387,10 +387,10 @@ public function status($options = ['state' => 'Only in DB,Only in sync dir,Diffe
* 1. User-provided $directory.
* 2. Default sync directory
*
* @param mixed $directory
* @param $directory
* A configuration directory. Note; can be boolean.
*/
public static function getDirectory(mixed $directory = null): string
public static function getDirectory($directory = null): string
{
$return = null;
// If the user provided a directory, use it.
Expand Down

0 comments on commit 5481ed1

Please sign in to comment.