Skip to content

Commit e21a82f

Browse files
Merge branch 'master' into refactoring_file_container
# Conflicts: # src/Container/FileContainer.php
2 parents 1e008b5 + d8e9c28 commit e21a82f

File tree

5 files changed

+13
-0
lines changed

5 files changed

+13
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/learn-symfony/css-compiler/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/learn-symfony/css-compiler/?branch=master)
2+
[![codecov](https://codecov.io/gh/learn-symfony/css-compiler/branch/master/graph/badge.svg)](https://codecov.io/gh/learn-symfony/css-compiler)
23
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/b72078dc-94a7-492f-9deb-3829c41d2519/mini.png)](https://insight.sensiolabs.com/projects/b72078dc-94a7-492f-9deb-3829c41d2519)
34

45
[![Latest Stable Version](https://poser.pugx.org/eugene-matvejev/css-compiler/version)](https://packagist.org/packages/eugene-matvejev/css-compiler)

src/Container/FileContainer.php

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
use EM\CssCompiler\Exception\FileException;
66

7+
/**
8+
* @since 0.1
9+
*/
710
class FileContainer
811
{
912
const TYPE_UNKNOWN = 'unknown';

src/Exception/CompilerException.php

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace EM\CssCompiler\Exception;
44

5+
/**
6+
* @since 0.1
7+
*/
58
class CompilerException extends \Exception
69
{
710
}

src/Exception/FileException.php

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace EM\CssCompiler\Exception;
44

5+
/**
6+
* @since 0.1
7+
*/
58
class FileException extends \Exception
69
{
710
}

src/Processor/Processor.php

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
use lessc as LESSCompiler;
1010
use scss_compass as CompassCompiler;
1111

12+
/**
13+
* @since 0.1
14+
*/
1215
class Processor
1316
{
1417
const FORMATTER_COMPRESSED = 'compressed';

0 commit comments

Comments
 (0)