Skip to content

Commit

Permalink
Merge pull request #150 from rabbitfang/fix-crlf-endings
Browse files Browse the repository at this point in the history
Fix occurrences of CRLF line endings.
  • Loading branch information
GrahamCampbell committed Jan 11, 2016
2 parents af48c04 + 15e79a0 commit a69bdfc
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 63 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
* text=auto
* eol=lf

/tests export-ignore
/.gitattributes export-ignore
Expand Down
22 changes: 11 additions & 11 deletions src/Exception/ExceptionInterface.php
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
{
//
}
26 changes: 13 additions & 13 deletions src/Exception/InvalidCallbackException.php
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
{
//
}
26 changes: 13 additions & 13 deletions src/Exception/InvalidFileException.php
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
{
//
}
26 changes: 13 additions & 13 deletions src/Exception/InvalidPathException.php
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
{
//
}
26 changes: 13 additions & 13 deletions src/Exception/ValidationException.php
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
{
//
}

0 comments on commit a69bdfc

Please sign in to comment.