Skip to content

Commit

Permalink
Add more docblock comments
Browse files Browse the repository at this point in the history
Perhaps unnecessary, I felt that it was helpful to provide sufficient
description of what's going on.
  • Loading branch information
settermjd committed Jan 9, 2025
1 parent 335c683 commit 4fd0bc1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Middleware/RedirectToNewDomainMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,14 @@

public function __construct(
/**
* This is the host portion of the route that was originally requested, e.g., deploywithdockercompose.com, hollows.org, or rspca.org.au.
* This is the host portion of the route that was originally requested,
* e.g., deploywithdockercompose.com, hollows.org, or rspca.org.au.
*/
private string $oldDomain,
/**
* This is the host portion of the route that the request will be redirected to, e.g., asrc.org.au, wwf.org.au, or blackdoginstitute.org.au.
* This is the host portion of the route that the request will be
* redirected to, e.g., asrc.org.au, wwf.org.au, or
* blackdoginstitute.org.au.
*/
private string $newDomain,
/**
Expand Down

0 comments on commit 4fd0bc1

Please sign in to comment.