Skip to content

Commit

Permalink
Code style fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdavenport committed Aug 21, 2016
1 parent 3af74bd commit 9418a23
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion libraries/joomla/string/parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Block tags may also be nested:
* {c} something {b} something else {/b} something more {/c}
*
* @since __DEPLOY_VERSION__
* @since __DEPLOY_VERSION__
*/
class JStringParser
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/joomla/string/token.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* Token interface.
*
* @since __DEPLOY_VERSION__
* @since __DEPLOY_VERSION__
*/
abstract class JStringToken
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/joomla/string/token/begin.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* A simple token or the beginning of a block token.
*
* @since __DEPLOY_VERSION__
* @since __DEPLOY_VERSION__
*/
class JStringTokenBegin extends JStringToken
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/joomla/string/token/definition.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* Token type definition.
*
* @since __DEPLOY_VERSION__
* @since __DEPLOY_VERSION__
*/
class JStringTokenDefinition
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/joomla/string/token/end.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* An end token.
*
* @since __DEPLOY_VERSION__
* @since __DEPLOY_VERSION__
*/
class JStringTokenEnd extends JStringToken
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/joomla/string/token/string.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* A string token.
*
* @since __DEPLOY_VERSION__
* @since __DEPLOY_VERSION__
*/
class JStringTokenString extends JStringToken
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/content/loadmodule/loadmodule.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function onContentPrepare($context, &$article, &$params, $page = 0)
}

// Get a content parser.
$parser = new JStringParser();
$parser = new JStringParser;

// Register the loadposition token.
// Syntax: {loadposition <module-position>[,<style>]}
Expand Down

0 comments on commit 9418a23

Please sign in to comment.