forked from vlucas/phpdotenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix occurrences of CRLF line endings.
Add rule to .gitattributes to commit all files with LF line endings.
- Loading branch information
1 parent
9caf304
commit 15e79a0
Showing
6 changed files
with
64 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
* text=auto | ||
* eol=lf | ||
|
||
/tests export-ignore | ||
/.gitattributes export-ignore | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<?php | ||
|
||
namespace Dotenv\Exception; | ||
|
||
/** | ||
* This is the exception interface. | ||
*/ | ||
interface ExceptionInterface | ||
{ | ||
// | ||
} | ||
<?php | ||
|
||
namespace Dotenv\Exception; | ||
|
||
/** | ||
* This is the exception interface. | ||
*/ | ||
interface ExceptionInterface | ||
{ | ||
// | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php | ||
|
||
namespace Dotenv\Exception; | ||
|
||
use InvalidArgumentException; | ||
|
||
/** | ||
* This is the invalid callback exception class. | ||
*/ | ||
class InvalidCallbackException extends InvalidArgumentException implements ExceptionInterface | ||
{ | ||
// | ||
} | ||
<?php | ||
|
||
namespace Dotenv\Exception; | ||
|
||
use InvalidArgumentException; | ||
|
||
/** | ||
* This is the invalid callback exception class. | ||
*/ | ||
class InvalidCallbackException extends InvalidArgumentException implements ExceptionInterface | ||
{ | ||
// | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php | ||
|
||
namespace Dotenv\Exception; | ||
|
||
use InvalidArgumentException; | ||
|
||
/** | ||
* This is the invalid file exception class. | ||
*/ | ||
class InvalidFileException extends InvalidArgumentException implements ExceptionInterface | ||
{ | ||
// | ||
} | ||
<?php | ||
|
||
namespace Dotenv\Exception; | ||
|
||
use InvalidArgumentException; | ||
|
||
/** | ||
* This is the invalid file exception class. | ||
*/ | ||
class InvalidFileException extends InvalidArgumentException implements ExceptionInterface | ||
{ | ||
// | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php | ||
|
||
namespace Dotenv\Exception; | ||
|
||
use InvalidArgumentException; | ||
|
||
/** | ||
* This is the invalid path exception class. | ||
*/ | ||
class InvalidPathException extends InvalidArgumentException implements ExceptionInterface | ||
{ | ||
// | ||
} | ||
<?php | ||
|
||
namespace Dotenv\Exception; | ||
|
||
use InvalidArgumentException; | ||
|
||
/** | ||
* This is the invalid path exception class. | ||
*/ | ||
class InvalidPathException extends InvalidArgumentException implements ExceptionInterface | ||
{ | ||
// | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php | ||
|
||
namespace Dotenv\Exception; | ||
|
||
use RuntimeException; | ||
|
||
/** | ||
* This is the validation exception class. | ||
*/ | ||
class ValidationException extends RuntimeException implements ExceptionInterface | ||
{ | ||
// | ||
} | ||
<?php | ||
|
||
namespace Dotenv\Exception; | ||
|
||
use RuntimeException; | ||
|
||
/** | ||
* This is the validation exception class. | ||
*/ | ||
class ValidationException extends RuntimeException implements ExceptionInterface | ||
{ | ||
// | ||
} |