Skip to content

Commit fc7cfa3

Browse files
author
Eugene Matvejev
authored
Merge pull request #10 from learn-symfony/master
sync with main repository
2 parents bbe7d85 + aba7f7f commit fc7cfa3

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

src/Container/File.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 File
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)