Skip to content

Commit

Permalink
Fix occurrences of CRLF line endings.
Browse files Browse the repository at this point in the history
Add rule to .gitattributes to commit all files with LF line endings.
  • Loading branch information
rabbitfang committed Jan 11, 2016
1 parent 9caf304 commit 15e79a0
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 15e79a0

Please sign in to comment.