Skip to content

Commit

Permalink
updating to correct code violations (formatting mostly)
Browse files Browse the repository at this point in the history
  • Loading branch information
enygma committed Sep 7, 2014
1 parent 98977db commit f5be921
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
THE SOFTWARE.
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>
</phpunit>
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Cast.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ public function castPowers ($casted) {
}
return $casted;
}
}
}
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Command/InfoCommand/Output/Console.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ public function render($results)
}
$output->writeLn("\n");
}
}
}
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Command/ListCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ protected function execute(InputInterface $input, OutputInterface $output)
$outputHandler = new $formatClass($output, $options);
return $outputHandler->render($rules);
}
}
}
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Command/ListCommand/Output/Console.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ public function render($rules)
}
$output->writeLn("\n<info>".$ruleCount.' tests</info>');
}
}
}
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Command/ListCommand/Output/Json.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ public function render($rules)

$output->writeLn(json_encode($data));
}
}
}
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Command/Output.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ public function getOption($optionName)
* @return [type] [description]
*/
public abstract function render($results);
}
}
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Command/ScanCommand/Output/Console.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ public function render($results)

return (count($fail) > 0) ? 1 : 0;
}
}
}
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Command/ScanCommand/Output/Html.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ public function render($results)
file_put_contents($output, $template);
}
}
}
}
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Command/ScanCommand/Output/Json.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ public function render($results)

$output->writeLn(json_encode($result));
}
}
}
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Command/ScanCommand/Output/Xml.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ public function render($results)

$output->writeLn($dom->saveXML());
}
}
}
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Command/ShowCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ protected function execute(InputInterface $input, OutputInterface $output)
}

}
}
}
2 changes: 1 addition & 1 deletion src/Psecio/Iniscan/Rule/MaximumPostSize.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ public function evaluate(array $ini)
return true;
}
}
}
}

0 comments on commit f5be921

Please sign in to comment.