Skip to content

Commit

Permalink
Remove following empty line
Browse files Browse the repository at this point in the history
  • Loading branch information
bueltge authored Feb 8, 2022
1 parent 5fe467a commit 5b592d9
Show file tree
Hide file tree
Showing 17 changed files with 0 additions and 17 deletions.
1 change: 0 additions & 1 deletion src/Rule/AbstractRegexRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

abstract class AbstractRegexRule implements RegexRuleInterface
{

/**
* {@inheritdoc}
*/
Expand Down
1 change: 0 additions & 1 deletion src/Rule/CleanUpList.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class CleanUpList extends AbstractRegexRule
{

/**
* Get the regex rule to identify the content for the callback.
* Clean up unordered list blocks to get for a block only one ul, ol block,
Expand Down
1 change: 0 additions & 1 deletion src/Rule/CleanUpPre.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class CleanUpPre extends AbstractRegexRule
{

/**
* Get the regex rule to identify the content for the callback.
* Clean up pre code blocks to get for a block only one pre code block, not each line.
Expand Down
1 change: 0 additions & 1 deletion src/Rule/Code.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class Code extends AbstractRegexRule
{

/**
* {@inheritdoc}
*/
Expand Down
1 change: 0 additions & 1 deletion src/Rule/ElementRuleInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

interface ElementRuleInterface
{

/**
* @param string $content Context which has to be parsed.
* @return string Rendered element.
Expand Down
1 change: 0 additions & 1 deletion src/Rule/GithubPre.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class GithubPre extends AbstractRegexRule
{

/**
* Get the regex rule to identify the fromFile for the callback.
* Code blocks via 3 ` include language string (optional).
Expand Down
1 change: 0 additions & 1 deletion src/Rule/Header.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class Header extends AbstractRegexRule
{

/**
* Get the regex rule to identify the fromFile for the callback.
* Header h1 - h6.
Expand Down
1 change: 0 additions & 1 deletion src/Rule/HorizontalLine.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class HorizontalLine extends AbstractRegexRule
{

/**
* Get the regex rule to identify the fromFile for the callback.
* Leave nh as horizontal line helper, only on lines without code ` before.
Expand Down
1 change: 0 additions & 1 deletion src/Rule/Image.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class Image extends AbstractRegexRule
{

/**
* Get the regex rule to identify the content for the callback.
* Parse image with optional alt string, like ![String](path/to/image.png "Alt string")
Expand Down
1 change: 0 additions & 1 deletion src/Rule/Italic.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class Italic extends AbstractRegexRule
{

/**
* Get the regex rule to identify the content for the callback.
* Italic formatting via one star * or one underline _.
Expand Down
1 change: 0 additions & 1 deletion src/Rule/Link.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class Link extends AbstractRegexRule
{

/**
* Get the regex rule to identify the fromFile for the callback.
* Links without possibility to add javascript, XSS topic.
Expand Down
1 change: 0 additions & 1 deletion src/Rule/NewLine.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class NewLine extends AbstractRegexRule
{

/**
* Get the regex rule to identify the content for the callback.
* Leave br as new line helper, only on break with html > before.
Expand Down
1 change: 0 additions & 1 deletion src/Rule/Paragraph.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class Paragraph implements ElementRuleInterface
{

/**
* Store the strings, there we exclude on set paragraph.
*
Expand Down
1 change: 0 additions & 1 deletion src/Rule/Pre.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class Pre extends AbstractRegexRule
{

/**
* Get the regex rule to identify the content for the callback.
* Code blocks via 4 spaces or tab.
Expand Down
1 change: 0 additions & 1 deletion src/Rule/RegexRuleInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

interface RegexRuleInterface extends ElementRuleInterface
{

/**
* @return string RegEx rule
*/
Expand Down
1 change: 0 additions & 1 deletion src/Rule/Strong.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class Strong extends AbstractRegexRule
{

/**
* Get the regex rule to identify the content for the callback.
* Strong, bold via double star ** or double underline __.
Expand Down
1 change: 0 additions & 1 deletion src/Rule/UnorderedList.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class UnorderedList extends AbstractRegexRule
{

/**
* Get the regex rule to identify the content for the callback.
* ul List via star * or -.
Expand Down

0 comments on commit 5b592d9

Please sign in to comment.