Skip to content

Commit

Permalink
Fix the ugly tab indentation in README code examples
Browse files Browse the repository at this point in the history
  • Loading branch information
qzminski committed Jun 4, 2019
1 parent c5fb3a8 commit fb875f1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ $GLOBALS['TL_DCA']['tl_news']['fields']['subheadline']['eval']['translatableFor'
```php
class NewsModel extends Terminal42\DcMultilingualBundle\Model\Multilingual
{
protected static $strTable = 'tl_news';
protected static $strTable = 'tl_news';

public static function findPublished()
{
return static::findBy(['t1.published=?'], [1]);
}
public static function findPublished()
{
return static::findBy(['t1.published=?'], [1]);
}
}
```

Expand Down

0 comments on commit fb875f1

Please sign in to comment.