-
-
Notifications
You must be signed in to change notification settings - Fork 638
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from rabbitfang/fix-crlf-endings
Fix occurrences of CRLF line endings.
- Loading branch information
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 | ||
{ | ||
// | ||
} |