Skip to content

Commit 284e0e7

Browse files
Merge remote-tracking branch 'origin/2.1'
Conflicts: CHANGELOG.md src/filters.php tests/Functional/FilterEnabledTest.php
2 parents f397c7c + e81c177 commit 284e0e7

24 files changed

+30
-30
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ CHANGE LOG
77
* Upgraded to laravel 5
88

99

10-
## V2.1.4 Alpha (Upcoming)
10+
## V2.1.4 (Upcoming)
1111

1212
* Removed the cs fixers
1313

src/Compilers/MinifyCompiler.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -53,11 +53,11 @@ public function __construct(BladeMinifier $blade, Filesystem $files, $cachePath)
5353
}
5454

5555
/**
56-
* Minifies the output before saving it.
57-
*
58-
* @param string $value
59-
* @return string
60-
*/
56+
* Minifies the output before saving it.
57+
*
58+
* @param string $value
59+
* @return string
60+
*/
6161
public function compileMinify($value)
6262
{
6363
return $this->blade->render($value);

src/Facades/HTMLMin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

src/HTMLMin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

src/HTMLMinServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

src/Minifiers/BladeMinifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

src/Minifiers/CssMinifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

src/Minifiers/HtmlMinifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

src/Minifiers/JsMinifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

src/Minifiers/MinifierInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

src/config/config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/AbstractTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/Compilers/MinifyCompilerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/Facades/HTMLMinTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/Functional/AbstractFunctionalTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/Functional/BladeEnabledTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/Functional/FilterEnabledTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -31,7 +31,7 @@ public function testNewSetup()
3131

3232
$this->app['router']->get('htmlmin-test-route', ['after' => 'htmlmin', function () {
3333
return $this->app['view']->make('stubs::test');
34-
}, ]);
34+
}]);
3535

3636
$actual = $this->call('GET', 'htmlmin-test-route')->getContent();
3737

tests/Functional/LiveEnabledTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/HTMLMinTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/Minifiers/BladeMinifierTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/Minifiers/CssMinifierTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/Minifiers/HtmlMinifierTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/Minifiers/JsMinifierTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

tests/ServiceProviderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
/**
3+
/*
44
* This file is part of Laravel HTMLMin by Graham Campbell.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

0 commit comments

Comments
 (0)