Skip to content

Commit

Permalink
Remove nullability from $tmpDir property
Browse files Browse the repository at this point in the history
The @var annotation for the $tmpDir property has been updated to `non-empty-string` to remove the possibility of it being null. This change ensures that the temporary directory for generated proxy classes must always be a non-empty string.
  • Loading branch information
koriym committed Nov 3, 2024
1 parent de1770f commit b3d7afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Aspect.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class Aspect
/**
* Temporary directory for generated proxy classes
*
* @var non-empty-string|null
* @var non-empty-string
*/
private $tmpDir;

Expand Down

0 comments on commit b3d7afc

Please sign in to comment.