forked from kriswallsmith/assetic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed abstract class per standards
- Loading branch information
1 parent
04c0e11
commit 616c758
Showing
3 changed files
with
8 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,15 +13,15 @@ | |
|
||
use Assetic\Asset\AssetInterface; | ||
use Assetic\Exception\FilterException; | ||
use Assetic\Filter\ProcessFilter; | ||
use Assetic\Filter\BaseProcessFilter; | ||
|
||
/** | ||
* Base YUI compressor filter. | ||
* | ||
* @link http://developer.yahoo.com/yui/compressor/ | ||
* @author Kris Wallsmith <[email protected]> | ||
*/ | ||
abstract class BaseCompressorFilter extends ProcessFilter | ||
abstract class BaseCompressorFilter extends BaseProcessFilter | ||
{ | ||
private $jarPath; | ||
private $javaPath; | ||
|
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