Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scrutinizer Auto-Fixes #11

Merged
merged 1 commit into from
Oct 14, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions class/CSSqueeze.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public function __construct($deflatIndent = null, array $configuration = null)
/**
* Squeezes a Cascade Style Sheet source code.
*
* @param void $css css file or content to consume.
* @param string $css css file or content to consume.
* @param bool $singleLine compress /or not css.
* @param bool $keepHack keep /or not css hacks.
*
Expand Down Expand Up @@ -332,7 +332,7 @@ protected function getImport($css)
*
* @param string $css CSS to consume
*
* @return array $ccs and $media
* @return string $ccs and $media
*/
protected function getCSS($css)
{
Expand Down Expand Up @@ -441,7 +441,7 @@ protected function mergeSelectors($selectors, $blocks)
* @param array $selectors Array of css selectors.
* @param array $blocks Array of css blocks. .
*
* @return array Returns array of $slectors and $blocks.
* @return string Returns array of $slectors and $blocks.
*/
protected function uniqueArray($selectors, $blocks)
{
Expand Down Expand Up @@ -562,7 +562,7 @@ protected function tokenize($lines)
*
* @param array $block css to consume.
*
* @return array Returns block sorted.
* @return string Returns block sorted.
*/
public function sorter($block)
{
Expand Down Expand Up @@ -729,7 +729,6 @@ protected function compress($css)
* Deflat compressed css
*
* @param string $css compressed css to consume.
* @param string $indent string indent
*
* @return string Returns css defalted.
*/
Expand Down