Skip to content

Commit dc42946

Browse files
committed
License simplification
1 parent c2716c6 commit dc42946

22 files changed

+11
-665
lines changed

LICENSE.md

Lines changed: 0 additions & 640 deletions
Large diffs are not rendered by default.

bin/pscss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
*
66
* @copyright 2012-2015 Leaf Corcoran
77
*
8-
* @license http://opensource.org/licenses/gpl-license GPL-3.0
98
* @license http://opensource.org/licenses/MIT MIT
109
*
1110
* @link http://leafo.net/scssphp

classmap.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
*
77
* @copyright 2012-2015 Leaf Corcoran
88
*
9-
* @license http://opensource.org/licenses/gpl-license GPL-3.0
109
* @license http://opensource.org/licenses/MIT MIT
1110
*
1211
* @link http://leafo.net/scssphp

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
"keywords": ["css", "stylesheet", "scss", "sass", "less"],
66
"homepage": "http://leafo.net/scssphp/",
77
"license": [
8-
"MIT",
9-
"GPL-3.0"
8+
"MIT"
109
],
1110
"authors": [
1211
{

site/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ <h1><a href="$root">scssphp</a></h1>
5353
<div class="footer">
5454
<div class="inner">
5555
<div>
56-
created by <a href="http://leafo.net">leaf corcoran</a> &middot; scssphp is licensed under GPL3/MIT
56+
created by <a href="http://leafo.net">leaf corcoran</a> &middot; scssphp is licensed under MIT
5757
</div>
5858
<div>
5959
generated by <a href="http://github.com/leafo/sitegen">sitegen</a> on $generate_date

src/Colors.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*
55
* @copyright 2012-2015 Leaf Corcoran
66
*
7-
* @license http://opensource.org/licenses/gpl-license GPL-3.0
87
* @license http://opensource.org/licenses/MIT MIT
98
*
109
* @link http://leafo.net/scssphp

src/Compiler.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*
55
* @copyright 2012-2015 Leaf Corcoran
66
*
7-
* @license http://opensource.org/licenses/gpl-license GPL-3.0
87
* @license http://opensource.org/licenses/MIT MIT
98
*
109
* @link http://leafo.net/scssphp
@@ -1614,7 +1613,9 @@ public function compileValue($value)
16141613
$filtered[$this->compileValue($keys[$i])] = $this->compileValue($values[$i]);
16151614
}
16161615

1617-
array_walk($filtered, function (&$value, $key) { $value = $key . ': ' . $value; });
1616+
array_walk($filtered, function (&$value, $key) {
1617+
$value = $key . ': ' . $value;
1618+
});
16181619

16191620
return '(' . implode(', ', $filtered) . ')';
16201621
case 'interpolated': # node created by extractInterpolation

src/Formatter.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*
55
* @copyright 2012-2015 Leaf Corcoran
66
*
7-
* @license http://opensource.org/licenses/gpl-license GPL-3.0
87
* @license http://opensource.org/licenses/MIT MIT
98
*
109
* @link http://leafo.net/scssphp
@@ -54,7 +53,7 @@ abstract class Formatter
5453
*/
5554
public $assignSeparator;
5655

57-
abstract function __construct();
56+
abstract public function __construct();
5857

5958
/**
6059
* Return indentation (whitespace)

src/Formatter/Compact.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*
55
* @copyright 2012-2015 Leaf Corcoran
66
*
7-
* @license http://opensource.org/licenses/gpl-license GPL-3.0
87
* @license http://opensource.org/licenses/MIT MIT
98
*
109
* @link http://leafo.net/scssphp

src/Formatter/Compressed.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*
55
* @copyright 2012-2015 Leaf Corcoran
66
*
7-
* @license http://opensource.org/licenses/gpl-license GPL-3.0
87
* @license http://opensource.org/licenses/MIT MIT
98
*
109
* @link http://leafo.net/scssphp

0 commit comments

Comments
 (0)