Skip to content

Commit

Permalink
Merge pull request #2 from GrahamCampbell/v2-cs
Browse files Browse the repository at this point in the history
Added a blank line after opening php
  • Loading branch information
kelvinj committed Oct 30, 2014
2 parents 8417fde + d135946 commit 721d216
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/Dotenv.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace Dotenv;

use Dotenv\Variable\Loader\EnvLoader;
Expand Down
4 changes: 3 additions & 1 deletion src/Variable/Loader/AbstractLoader.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Dotenv\Variable\Loader;
<?php

namespace Dotenv\Variable\Loader;

use Dotenv\Variable\LoadsVariables;
use Dotenv\Variable\Variable;
Expand Down
4 changes: 3 additions & 1 deletion src/Variable/Loader/EnvLoader.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Dotenv\Variable\Loader;
<?php

namespace Dotenv\Variable\Loader;

use Dotenv\Variable\Loader\AbstractLoader;
use Dotenv\Variable\LoadsVariables;
Expand Down
4 changes: 3 additions & 1 deletion src/Variable/Loader/PhpLoader.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Dotenv\Variable\Loader;
<?php

namespace Dotenv\Variable\Loader;

use Dotenv\Variable\Loader\AbstractLoader;
use Dotenv\Variable\LoadsVariables;
Expand Down
4 changes: 3 additions & 1 deletion src/Variable/LoadsVariables.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Dotenv\Variable;
<?php

namespace Dotenv\Variable;

/**
* Classes implementing this interface are capable of reading environment variables into an
Expand Down
4 changes: 3 additions & 1 deletion src/Variable/Variable.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Dotenv\Variable;
<?php

namespace Dotenv\Variable;

class Variable
{
Expand Down
1 change: 1 addition & 0 deletions src/helpers.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

if (!function_exists('dotenv')) {
/**
* @return \Dotenv\Dotenv
Expand Down
1 change: 1 addition & 0 deletions tests/Dotenv/Dotenv.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

use Dotenv\Dotenv;

class DotenvTest extends \PHPUnit_Framework_TestCase
Expand Down
1 change: 1 addition & 0 deletions tests/Dotenv/DotenvPhp.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

use Dotenv\Dotenv;

class DotenvPhpTest extends \PHPUnit_Framework_TestCase
Expand Down
1 change: 1 addition & 0 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

error_reporting(-1);
date_default_timezone_set('UTC');

Expand Down

0 comments on commit 721d216

Please sign in to comment.