Skip to content

Commit

Permalink
php cs: replaced "phpdoc_annotation_without_dot" with "phpdoc_summary…
Browse files Browse the repository at this point in the history
…" to have dot at the end
  • Loading branch information
k00ni committed May 26, 2020
1 parent af3f1f6 commit 91be9eb
Show file tree
Hide file tree
Showing 52 changed files with 53 additions and 53 deletions.
2 changes: 1 addition & 1 deletion .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ return PhpCsFixer\Config::create()
'no_unused_imports' => true,
'no_superfluous_phpdoc_tags' => true,
'ordered_imports' => true,
'phpdoc_annotation_without_dot' => true,
'phpdoc_summary' => false,
'protected_to_private' => false,
])
->setRiskyAllowed(true)
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Document.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* - http://cpansearch.perl.org/src/JV/PostScript-Font-1.10.02/lib/PostScript/ISOLatin1Encoding.pm
* - http://cpansearch.perl.org/src/JV/PostScript-Font-1.10.02/lib/PostScript/ISOLatin9Encoding.pm
* - http://cpansearch.perl.org/src/JV/PostScript-Font-1.10.02/lib/PostScript/StandardEncoding.pm
* - http://cpansearch.perl.org/src/JV/PostScript-Font-1.10.02/lib/PostScript/WinAnsiEncoding.pm.
* - http://cpansearch.perl.org/src/JV/PostScript-Font-1.10.02/lib/PostScript/WinAnsiEncoding.pm
*
* Class Document
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
use Smalot\PdfParser\Element\ElementXRef;

/**
* Class Element.
* Class Element
*/
class Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element/ElementArray.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
use Smalot\PdfParser\PDFObject;

/**
* Class ElementArray.
* Class ElementArray
*/
class ElementArray extends Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element/ElementBoolean.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
use Smalot\PdfParser\Element;

/**
* Class ElementBoolean.
* Class ElementBoolean
*/
class ElementBoolean extends Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element/ElementDate.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use Smalot\PdfParser\Document;

/**
* Class ElementDate.
* Class ElementDate
*/
class ElementDate extends ElementString
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element/ElementHexa.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use Smalot\PdfParser\Document;

/**
* Class ElementHexa.
* Class ElementHexa
*/
class ElementHexa extends ElementString
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element/ElementMissing.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
use Smalot\PdfParser\Element;

/**
* Class ElementMissing.
* Class ElementMissing
*/
class ElementMissing extends Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element/ElementName.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
use Smalot\PdfParser\Font;

/**
* Class ElementName.
* Class ElementName
*/
class ElementName extends Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element/ElementNull.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
use Smalot\PdfParser\Element;

/**
* Class ElementNull.
* Class ElementNull
*/
class ElementNull extends Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element/ElementNumeric.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
use Smalot\PdfParser\Element;

/**
* Class ElementNumeric.
* Class ElementNumeric
*/
class ElementNumeric extends Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element/ElementString.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
use Smalot\PdfParser\Font;

/**
* Class ElementString.
* Class ElementString
*/
class ElementString extends Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element/ElementStruct.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
use Smalot\PdfParser\Header;

/**
* Class ElementStruct.
* Class ElementStruct
*/
class ElementStruct extends Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Element/ElementXRef.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
use Smalot\PdfParser\Element;

/**
* Class ElementXRef.
* Class ElementXRef
*/
class ElementXRef extends Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Encoding.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use Smalot\PdfParser\Element\ElementNumeric;

/**
* Class Encoding.
* Class Encoding
*/
class Encoding extends PDFObject
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Encoding/ISOLatin1Encoding.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
namespace Smalot\PdfParser\Encoding;

/**
* Class ISOLatin1Encoding.
* Class ISOLatin1Encoding
*/
class ISOLatin1Encoding
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Encoding/ISOLatin9Encoding.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
namespace Smalot\PdfParser\Encoding;

/**
* Class ISOLatin9Encoding.
* Class ISOLatin9Encoding
*/
class ISOLatin9Encoding
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Encoding/MacRomanEncoding.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
namespace Smalot\PdfParser\Encoding;

/**
* Class MacRomanEncoding.
* Class MacRomanEncoding
*/
class MacRomanEncoding
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Encoding/StandardEncoding.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
namespace Smalot\PdfParser\Encoding;

/**
* Class StandardEncoding.
* Class StandardEncoding
*/
class StandardEncoding
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Encoding/WinAnsiEncoding.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
namespace Smalot\PdfParser\Encoding;

/**
* Class WinAnsiEncoding.
* Class WinAnsiEncoding
*/
class WinAnsiEncoding
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Font.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
namespace Smalot\PdfParser;

/**
* Class Font.
* Class Font
*/
class Font extends PDFObject
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Font/FontCIDFontType0.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use Smalot\PdfParser\Font;

/**
* Class FontCIDFontType0.
* Class FontCIDFontType0
*/
class FontCIDFontType0 extends Font
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Font/FontCIDFontType2.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use Smalot\PdfParser\Font;

/**
* Class FontCIDFontType2.
* Class FontCIDFontType2
*/
class FontCIDFontType2 extends Font
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Font/FontTrueType.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use Smalot\PdfParser\Font;

/**
* Class FontTrueType.
* Class FontTrueType
*/
class FontTrueType extends Font
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Font/FontType0.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use Smalot\PdfParser\Font;

/**
* Class FontType0.
* Class FontType0
*/
class FontType0 extends Font
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Font/FontType1.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use Smalot\PdfParser\Font;

/**
* Class FontType1.
* Class FontType1
*/
class FontType1 extends Font
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Font/FontType3.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use Smalot\PdfParser\Font;

/**
* Class FontType3.
* Class FontType3
*/
class FontType3 extends Font
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Header.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
use Smalot\PdfParser\Element\ElementXRef;

/**
* Class Header.
* Class Header
*/
class Header
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/PDFObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
use Smalot\PdfParser\XObject\Image;

/**
* Class PDFObject.
* Class PDFObject
*/
class PDFObject
{
Expand Down
4 changes: 2 additions & 2 deletions src/Smalot/PdfParser/Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
use Smalot\PdfParser\Element\ElementXRef;

/**
* Class Page.
* Class Page
*/
class Page extends PDFObject
{
Expand Down Expand Up @@ -111,7 +111,7 @@ public function getFont($id)
}

/**
* Support for XObject.
* Support for XObject
*
* @return PDFObject[]
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Pages.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
namespace Smalot\PdfParser;

/**
* Class Pages.
* Class Pages
*/
class Pages extends PDFObject
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
use Smalot\PdfParser\Element\ElementXRef;

/**
* Class Parser.
* Class Parser
*/
class Parser
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Tests/Units/Document.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use mageekguy\atoum;

/**
* Class Document.
* Class Document
*/
class Document extends atoum\test
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Tests/Units/Element.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use mageekguy\atoum;

/**
* Class Element.
* Class Element
*/
class Element extends atoum\test
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Tests/Units/Element/ElementArray.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
use Smalot\PdfParser\Page;

/**
* Class ElementArray.
* Class ElementArray
*/
class ElementArray extends atoum\test
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use mageekguy\atoum;

/**
* Class ElementBoolean.
* Class ElementBoolean
*/
class ElementBoolean extends atoum\test
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Tests/Units/Element/ElementDate.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use mageekguy\atoum;

/**
* Class ElementDate.
* Class ElementDate
*/
class ElementDate extends atoum\test
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Tests/Units/Element/ElementHexa.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use mageekguy\atoum;

/**
* Class ElementHexa.
* Class ElementHexa
*/
class ElementHexa extends atoum\test
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use mageekguy\atoum;

/**
* Class ElementMissing.
* Class ElementMissing
*/
class ElementMissing extends atoum\test
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Tests/Units/Element/ElementName.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use mageekguy\atoum;

/**
* Class ElementName.
* Class ElementName
*/
class ElementName extends atoum\test
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Tests/Units/Element/ElementNull.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use mageekguy\atoum;

/**
* Class ElementNull.
* Class ElementNull
*/
class ElementNull extends atoum\test
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use mageekguy\atoum;

/**
* Class ElementNumeric.
* Class ElementNumeric
*/
class ElementNumeric extends atoum\test
{
Expand Down
2 changes: 1 addition & 1 deletion src/Smalot/PdfParser/Tests/Units/Element/ElementString.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use mageekguy\atoum;

/**
* Class ElementString.
* Class ElementString
*/
class ElementString extends atoum\test
{
Expand Down
Loading

0 comments on commit 91be9eb

Please sign in to comment.