-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make scssserver compatible with scssphp 1.5.0 (#5)
Authored-by: Tim Schoondergang <[email protected]> Squashed commits: * some little changes because op Deprecation warnings * make it oldstyle again * better example in readme * force scssphp 1.5.0 and up
- Loading branch information
Showing
4 changed files
with
74 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
/** | ||
* SCSSPHP | ||
* | ||
* @copyright 2012-2020 Leaf Corcoran | ||
* | ||
* @license http://opensource.org/licenses/MIT MIT | ||
* | ||
* @link http://scssphp.github.io/scssphp | ||
*/ | ||
|
||
namespace ScssPhp\Server; | ||
|
||
use ScssPhp\ScssPhp\Exception\SassException; | ||
|
||
/** | ||
* Server Exception | ||
* | ||
* @author Anthon Pang <[email protected]> | ||
*/ | ||
class ServerException extends \Exception implements SassException | ||
{ | ||
} |