From bad39ed0b5daa4e6c2c042549b7226d543e8abb3 Mon Sep 17 00:00:00 2001 From: Florian Moser Date: Thu, 26 Dec 2024 12:41:02 +0100 Subject: [PATCH] refactor: Change namespace --- examples/book.php | 16 +++--- examples/invoice.php | 22 ++++---- scripts/DefaultFontSizing.php | 6 +- .../Base/BaseIdentifiableStructure.php | 2 +- src/Backend/Catalog/Base/BaseStructure.php | 6 +- src/Backend/Catalog/Catalog.php | 10 ++-- src/Backend/Catalog/Content.php | 8 +-- src/Backend/Catalog/Contents.php | 8 +-- src/Backend/Catalog/Font.php | 4 +- .../Catalog/Font/Structure/CIDFont.php | 8 +-- .../Catalog/Font/Structure/CIDSystemInfo.php | 6 +- src/Backend/Catalog/Font/Structure/CMap.php | 8 +-- .../Catalog/Font/Structure/FontDescriptor.php | 8 +-- .../Catalog/Font/Structure/FontStream.php | 8 +-- src/Backend/Catalog/Font/TrueType.php | 6 +- src/Backend/Catalog/Font/Type0.php | 10 ++-- src/Backend/Catalog/Font/Type1.php | 8 +-- src/Backend/Catalog/Image.php | 8 +-- src/Backend/Catalog/Page.php | 8 +-- src/Backend/Catalog/Pages.php | 8 +-- src/Backend/Catalog/Resources.php | 8 +-- src/Backend/CatalogVisitor.php | 24 ++++---- src/Backend/File/File.php | 16 +++--- src/Backend/File/Object/Base/BaseObject.php | 4 +- src/Backend/File/Object/DictionaryObject.php | 18 +++--- src/Backend/File/Object/StreamObject.php | 8 +-- src/Backend/File/ObjectVisitor.php | 8 +-- .../File/Structure/Base/BaseStructure.php | 4 +- src/Backend/File/Structure/Body.php | 8 +-- .../File/Structure/CrossReferenceTable.php | 6 +- src/Backend/File/Structure/FileHeader.php | 6 +- src/Backend/File/Structure/FileTrailer.php | 8 +-- src/Backend/File/StructureVisitor.php | 6 +- src/Backend/File/Token/ArrayToken.php | 6 +- src/Backend/File/Token/Base/BaseToken.php | 4 +- src/Backend/File/Token/DictionaryToken.php | 8 +-- src/Backend/File/Token/NameToken.php | 6 +- src/Backend/File/Token/NumberToken.php | 6 +- src/Backend/File/Token/ReferenceToken.php | 8 +-- src/Backend/File/Token/TextToken.php | 6 +- src/Backend/File/TokenVisitor.php | 16 +++--- src/Backend/Structure/Document.php | 16 +++--- .../Document/Base/BaseDocumentStructure.php | 4 +- .../Structure/Document/DocumentResources.php | 10 ++-- src/Backend/Structure/Document/Font.php | 4 +- .../Structure/Document/Font/CMapCreator.php | 8 +-- .../Structure/Document/Font/DefaultFont.php | 8 +-- .../Structure/Document/Font/EmbeddedFont.php | 10 ++-- src/Backend/Structure/Document/Image.php | 6 +- src/Backend/Structure/Document/Page.php | 20 +++---- .../Page/Content/Base/BaseContent.php | 8 +-- .../Document/Page/Content/ImageContent.php | 14 ++--- .../Page/Content/Paragraph/Phrase.php | 8 +-- .../Page/Content/ParagraphContent.php | 14 ++--- .../Page/Content/RectangleContent.php | 12 ++-- .../Document/Page/Content/TextContent.php | 16 +++--- .../Document/Page/ContentVisitor.php | 22 ++++---- .../Document/Page/State/Base/BaseState.php | 4 +- .../Document/Page/State/ColorState.php | 6 +- .../Page/State/GeneralGraphicState.php | 6 +- .../Document/Page/State/TextState.php | 8 +-- .../Base/BaseStateCollection.php | 4 +- .../Page/StateCollections/DrawingState.php | 10 ++-- .../Page/StateCollections/FullState.php | 8 +-- .../Page/StateCollections/WritingState.php | 12 ++-- .../Document/Page/StateTransitionVisitor.php | 16 +++--- src/Backend/Structure/DocumentVisitor.php | 42 +++++++------- .../Structure/Optimization/Configuration.php | 2 +- .../Structure/Optimization/FontOptimizer.php | 10 ++-- .../Structure/Optimization/ImageOptimizer.php | 2 +- .../Backend/File/Table/Base/BaseTable.php | 4 +- .../Backend/File/Table/CMap/Format/Format.php | 6 +- .../File/Table/CMap/Format/Format4.php | 8 +-- .../Backend/File/Table/CMap/FormatVisitor.php | 4 +- src/Font/Backend/File/Table/CMap/Subtable.php | 4 +- src/Font/Backend/File/Table/CMapTable.php | 8 +-- .../Backend/File/Table/Glyf/ComponentGlyf.php | 4 +- src/Font/Backend/File/Table/GlyfTable.php | 12 ++-- src/Font/Backend/File/Table/HHeaTable.php | 6 +- .../Backend/File/Table/HMtx/LongHorMetric.php | 2 +- src/Font/Backend/File/Table/HMtxTable.php | 8 +-- src/Font/Backend/File/Table/HeadTable.php | 8 +-- src/Font/Backend/File/Table/LocaTable.php | 6 +- src/Font/Backend/File/Table/MaxPTable.php | 6 +- .../Backend/File/Table/Name/NameRecord.php | 2 +- src/Font/Backend/File/Table/NameTable.php | 8 +-- src/Font/Backend/File/Table/OS2Table.php | 6 +- src/Font/Backend/File/Table/OffsetTable.php | 8 +-- .../Backend/File/Table/Post/Format/Format.php | 6 +- .../File/Table/Post/Format/Format2.php | 6 +- .../Backend/File/Table/Post/FormatVisitor.php | 4 +- src/Font/Backend/File/Table/PostTable.php | 8 +-- src/Font/Backend/File/Table/RawTable.php | 6 +- .../File/Table/TableDirectoryEntry.php | 6 +- src/Font/Backend/File/TableDirectory.php | 26 ++++----- src/Font/Backend/File/TableVisitor.php | 6 +- .../File/Traits/BinaryTreeSearchableTrait.php | 2 +- .../Backend/File/Traits/BoundingBoxTrait.php | 2 +- .../File/Traits/NullableRawContent.php | 2 +- src/Font/Backend/File/Traits/RawContent.php | 2 +- src/Font/Backend/FileWriter.php | 56 +++++++++---------- src/Font/Backend/StreamWriter.php | 2 +- src/Font/Frontend/File/FontFile.php | 26 ++++----- .../File/Table/CMap/Format/Format.php | 4 +- .../File/Table/CMap/Format/Format0.php | 4 +- .../File/Table/CMap/Format/Format12.php | 4 +- .../File/Table/CMap/Format/Format12Group.php | 2 +- .../File/Table/CMap/Format/Format4.php | 6 +- .../File/Table/CMap/Format/Format6.php | 4 +- .../Frontend/File/Table/CMap/FormatReader.php | 18 +++--- .../Table/CMap/FormatVisitorInterface.php | 10 ++-- .../Frontend/File/Table/CMap/Subtable.php | 4 +- src/Font/Frontend/File/Table/CMapTable.php | 4 +- .../File/Table/Glyf/ComponentGlyf.php | 4 +- src/Font/Frontend/File/Table/GlyfTable.php | 8 +-- src/Font/Frontend/File/Table/HHeaTable.php | 2 +- .../File/Table/HMtx/LongHorMetric.php | 2 +- src/Font/Frontend/File/Table/HMtxTable.php | 4 +- src/Font/Frontend/File/Table/HeadTable.php | 4 +- src/Font/Frontend/File/Table/LocaTable.php | 2 +- src/Font/Frontend/File/Table/MaxPTable.php | 2 +- .../File/Table/Name/LangTagRecord.php | 2 +- .../Frontend/File/Table/Name/NameRecord.php | 2 +- src/Font/Frontend/File/Table/NameTable.php | 6 +- src/Font/Frontend/File/Table/OS2Table.php | 2 +- src/Font/Frontend/File/Table/OffsetTable.php | 4 +- .../File/Table/Post/Format/Format.php | 4 +- .../File/Table/Post/Format/Format1.php | 4 +- .../File/Table/Post/Format/Format2.php | 4 +- .../File/Table/Post/Format/Format25.php | 4 +- .../File/Table/Post/Format/Format3.php | 4 +- .../Frontend/File/Table/Post/FormatReader.php | 16 +++--- .../Table/Post/FormatVisitorInterface.php | 10 ++-- src/Font/Frontend/File/Table/PostTable.php | 4 +- src/Font/Frontend/File/Table/RawTable.php | 2 +- .../File/Table/TableDirectoryEntry.php | 2 +- .../File/Traits/BinaryTreeSearchableTrait.php | 2 +- .../Frontend/File/Traits/BoundingBoxTrait.php | 2 +- .../File/Traits/NullableRawContent.php | 2 +- src/Font/Frontend/File/Traits/RawContent.php | 2 +- src/Font/Frontend/FileReader.php | 44 +++++++-------- src/Font/Frontend/StreamReader.php | 2 +- src/Font/IR/CharacterRepository.php | 6 +- src/Font/IR/CharacterSizer.php | 4 +- src/Font/IR/Optimizer.php | 8 +-- src/Font/IR/Parser.php | 36 ++++++------ src/Font/IR/Structure/BoundingBox.php | 2 +- src/Font/IR/Structure/Character.php | 6 +- src/Font/IR/Structure/Font.php | 4 +- src/Font/IR/Structure/NameCollection.php | 2 +- src/Font/IR/Structure/PostScriptInfo.php | 2 +- src/Font/IR/Structure/TableDirectory.php | 18 +++--- .../IR/Structure/Tables/FontInformation.php | 2 +- src/Font/IR/Utils/CMap/Format4/Segment.php | 2 +- .../IR/Utils/CMap/Format4/Transformer.php | 2 +- .../IR/Utils/CMap/GlyphIndexFormatVisitor.php | 14 ++--- .../IR/Utils/Post/GlyphIndexFormatVisitor.php | 16 +++--- src/Font/IR/Utils/Post/GlyphInfo.php | 2 +- .../Resources/GlyphNameMapping/Factory.php | 2 +- src/Frontend/Content/AbstractContent.php | 6 +- src/Frontend/Content/ImagePlacement.php | 8 +-- src/Frontend/Content/Paragraph.php | 10 ++-- src/Frontend/Content/Paragraph/Phrase.php | 4 +- src/Frontend/Content/Rectangle.php | 8 +-- src/Frontend/Content/Spacer.php | 6 +- src/Frontend/Content/Style/DrawingStyle.php | 6 +- src/Frontend/Content/Style/TextStyle.php | 6 +- src/Frontend/Layout/AbstractBlock.php | 6 +- src/Frontend/Layout/Block.php | 4 +- src/Frontend/Layout/ContentBlock.php | 6 +- src/Frontend/Layout/Flow.php | 8 +-- src/Frontend/Layout/Grid.php | 10 ++-- src/Frontend/Layout/Parts/Row.php | 10 ++-- src/Frontend/Layout/Style/BlockStyle.php | 4 +- src/Frontend/Layout/Style/ColumnSize.php | 2 +- src/Frontend/Layout/Style/FlowDirection.php | 2 +- src/Frontend/Layout/Table.php | 10 ++-- src/Frontend/Layout/Traits/BlockTrait.php | 4 +- .../Layout/Traits/ColumnSizesTrait.php | 4 +- .../Allocate/Allocators/FlowAllocator.php | 12 ++-- .../Allocate/Allocators/GridAllocator.php | 18 +++--- .../Allocators/ParagraphAllocator.php | 8 +-- .../Allocate/Allocators/TableAllocator.php | 8 +-- .../LayoutEngine/Allocate/BlockAllocation.php | 4 +- .../Allocate/BlockAllocationVisitor.php | 24 ++++---- .../Allocate/ContentAllocation.php | 10 ++-- .../Allocate/ContentAllocationVisitor.php | 16 +++--- .../LayoutEngine/BlockVisitorInterface.php | 12 ++-- .../LayoutEngine/ContentVisitorInterface.php | 10 ++-- .../Measure/BlockMeasurementVisitor.php | 22 ++++---- .../Measure/ContentMeasurementVisitor.php | 16 +++--- .../LayoutEngine/Measure/Measurement.php | 2 +- .../Measure/Measurer/FlowMeasurer.php | 10 ++-- .../Measure/Measurer/GridMeasurer.php | 12 ++-- .../Measure/Measurer/ParagraphMeasurer.php | 10 ++-- src/Frontend/LinearDocument.php | 16 +++--- src/Frontend/Printer.php | 34 +++++------ src/Frontend/Resource/Font.php | 8 +-- src/Frontend/Resource/Font/FontFamily.php | 2 +- .../Resource/Font/FontMeasurement.php | 6 +- src/Frontend/Resource/Font/FontRepository.php | 18 +++--- src/Frontend/Resource/Font/FontStyle.php | 2 +- src/Frontend/Resource/Font/FontWeight.php | 2 +- .../MonospaceProportionalWordSizer.php | 2 +- .../Font/WordSizer/ProportionalWordSizer.php | 2 +- .../Font/WordSizer/WordSizerInterface.php | 2 +- .../Font/WordSizer/WordSizerVisitor.php | 10 ++-- src/Frontend/Resource/Image.php | 2 +- .../Resource/Image/ImageRepository.php | 6 +- src/IR/Analysis/AnalysisResult.php | 8 +-- src/IR/Analysis/AnalyzeContentVisitor.php | 16 +++--- src/IR/Document.php | 8 +-- src/IR/Document/Base/BaseDocumentResource.php | 6 +- src/IR/Document/Content/Base/BaseContent.php | 4 +- src/IR/Document/Content/Common/Color.php | 2 +- src/IR/Document/Content/Common/Position.php | 2 +- src/IR/Document/Content/Common/Size.php | 2 +- .../Content/ContentVisitorInterface.php | 2 +- src/IR/Document/Content/ImagePlacement.php | 10 ++-- src/IR/Document/Content/Paragraph.php | 8 +-- src/IR/Document/Content/Rectangle.php | 10 ++-- .../Content/Rectangle/RectangleStyle.php | 4 +- src/IR/Document/Content/Text.php | 8 +-- src/IR/Document/Content/Text/Phrase.php | 2 +- src/IR/Document/Content/Text/TextStyle.php | 6 +- src/IR/Document/ContentVisitor.php | 32 +++++------ src/IR/Document/Page.php | 10 ++-- .../Document/Resource/DocumentResources.php | 10 ++-- src/IR/Document/Resource/Font.php | 6 +- src/IR/Document/Resource/Font/DefaultFont.php | 10 ++-- .../Document/Resource/Font/EmbeddedFont.php | 10 ++-- src/IR/Document/Resource/Font/FontVisitor.php | 2 +- .../Font/Utils/DefaultFontSizeLookup.php | 2 +- .../Font/Utils/DefaultFontType1Mapping.php | 6 +- src/IR/Document/Resource/Image.php | 6 +- src/IR/Document/Resource/PageResources.php | 20 +++---- .../Resource/State/ColorStateRepository.php | 6 +- .../State/GeneralGraphicStateRepository.php | 4 +- .../Resource/State/TextStateRepository.php | 6 +- src/IR/DocumentVisitor.php | 18 +++--- src/Utils/LUDecomposition3By3.php | 2 +- src/Utils/SingletonTrait.php | 2 +- src/Utils/TransformationMatrixCalculator.php | 2 +- .../Font/Backend/FileWriterTest.php | 16 +++--- .../Font/Frontend/FileReaderTest.php | 28 +++++----- tests/Integration/Font/IR/ParserTest.php | 10 ++-- .../LinearDocument/ContentTestCase.php | 30 +++++----- .../Frontend/LinearDocument/FlowTestCase.php | 20 +++---- .../Frontend/LinearDocument/GridTestCase.php | 30 +++++----- .../LinearDocument/LinearDocumentTestCase.php | 4 +- .../Frontend/LinearDocument/TableTestCase.php | 22 ++++---- tests/Integration/IR/PrinterTest.php | 16 +++--- tests/Resources/ResourcesProvider.php | 2 +- tests/Unit/Font/Backend/StreamWriterTest.php | 6 +- tests/Unit/Font/Frontend/StreamReaderTest.php | 4 +- .../CMap/GlyphIndexFormatVisitorTest.php | 6 +- .../GlyphNameMapping/FactoryTest.php | 4 +- 257 files changed, 1076 insertions(+), 1076 deletions(-) diff --git a/examples/book.php b/examples/book.php index 19a4566d..9d471451 100644 --- a/examples/book.php +++ b/examples/book.php @@ -2,14 +2,14 @@ include '../vendor/autoload.php'; -use PdfGenerator\Frontend\Content\Paragraph; -use PdfGenerator\Frontend\Content\Rectangle; -use PdfGenerator\Frontend\Content\Style\DrawingStyle; -use PdfGenerator\Frontend\Content\Style\TextStyle; -use PdfGenerator\Frontend\Layout\ContentBlock; -use PdfGenerator\Frontend\Layout\Flow; -use PdfGenerator\Frontend\LinearDocument; -use PdfGenerator\Frontend\Resource\Font; +use Famoser\PdfGenerator\Frontend\Content\Paragraph; +use Famoser\PdfGenerator\Frontend\Content\Rectangle; +use Famoser\PdfGenerator\Frontend\Content\Style\DrawingStyle; +use Famoser\PdfGenerator\Frontend\Content\Style\TextStyle; +use Famoser\PdfGenerator\Frontend\Layout\ContentBlock; +use Famoser\PdfGenerator\Frontend\Layout\Flow; +use Famoser\PdfGenerator\Frontend\LinearDocument; +use Famoser\PdfGenerator\Frontend\Resource\Font; $document = new LinearDocument([210, 297], 20); diff --git a/examples/invoice.php b/examples/invoice.php index f41dbc86..3471bb11 100644 --- a/examples/invoice.php +++ b/examples/invoice.php @@ -11,17 +11,17 @@ include '../vendor/autoload.php'; -use PdfGenerator\Frontend\Content\Paragraph; -use PdfGenerator\Frontend\Content\Style\DrawingStyle; -use PdfGenerator\Frontend\Content\Style\TextStyle; -use PdfGenerator\Frontend\Layout\ContentBlock; -use PdfGenerator\Frontend\Layout\Flow; -use PdfGenerator\Frontend\Layout\Parts\Row; -use PdfGenerator\Frontend\Layout\Style\ColumnSize; -use PdfGenerator\Frontend\Layout\Table; -use PdfGenerator\Frontend\LinearDocument; -use PdfGenerator\Frontend\Resource\Font; -use PdfGenerator\IR\Document\Content\Common\Color; +use Famoser\PdfGenerator\Frontend\Content\Paragraph; +use Famoser\PdfGenerator\Frontend\Content\Style\DrawingStyle; +use Famoser\PdfGenerator\Frontend\Content\Style\TextStyle; +use Famoser\PdfGenerator\Frontend\Layout\ContentBlock; +use Famoser\PdfGenerator\Frontend\Layout\Flow; +use Famoser\PdfGenerator\Frontend\Layout\Parts\Row; +use Famoser\PdfGenerator\Frontend\Layout\Style\ColumnSize; +use Famoser\PdfGenerator\Frontend\Layout\Table; +use Famoser\PdfGenerator\Frontend\LinearDocument; +use Famoser\PdfGenerator\Frontend\Resource\Font; +use Famoser\PdfGenerator\IR\Document\Content\Common\Color; $margin = 15; $document = new LinearDocument([210, 297], $margin); diff --git a/scripts/DefaultFontSizing.php b/scripts/DefaultFontSizing.php index 8dff941b..1be2ccd6 100644 --- a/scripts/DefaultFontSizing.php +++ b/scripts/DefaultFontSizing.php @@ -15,9 +15,9 @@ include '../vendor/autoload.php'; -use PdfGenerator\IR\Document; -use PdfGenerator\IR\Document\Resource\Font\Utils\DefaultFontType1Mapping; -use PdfGenerator\IR\Text\LineBreak\WordSizer\CharacterSizer; +use Famoser\PdfGenerator\IR\Document; +use Famoser\PdfGenerator\IR\Document\Resource\Font\Utils\DefaultFontType1Mapping; +use Famoser\PdfGenerator\IR\Text\LineBreak\WordSizer\CharacterSizer; $fontMapPath = '/usr/share/ghostscript/9.54.0/Resource/Init/Fontmap.GS'; $fontDir = '/usr/share/fonts/gsfonts'; diff --git a/src/Backend/Catalog/Base/BaseIdentifiableStructure.php b/src/Backend/Catalog/Base/BaseIdentifiableStructure.php index 9268be15..83fb124b 100644 --- a/src/Backend/Catalog/Base/BaseIdentifiableStructure.php +++ b/src/Backend/Catalog/Base/BaseIdentifiableStructure.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog\Base; +namespace Famoser\PdfGenerator\Backend\Catalog\Base; abstract readonly class BaseIdentifiableStructure extends BaseStructure { diff --git a/src/Backend/Catalog/Base/BaseStructure.php b/src/Backend/Catalog/Base/BaseStructure.php index 0f92e514..166a96a2 100644 --- a/src/Backend/Catalog/Base/BaseStructure.php +++ b/src/Backend/Catalog/Base/BaseStructure.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog\Base; +namespace Famoser\PdfGenerator\Backend\Catalog\Base; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; abstract readonly class BaseStructure { diff --git a/src/Backend/Catalog/Catalog.php b/src/Backend/Catalog/Catalog.php index 09afdbc2..f18596e1 100644 --- a/src/Backend/Catalog/Catalog.php +++ b/src/Backend/Catalog/Catalog.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog; +namespace Famoser\PdfGenerator\Backend\Catalog; -use PdfGenerator\Backend\Catalog\Base\BaseStructure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\File; -use PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\File; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; readonly class Catalog extends BaseStructure { diff --git a/src/Backend/Catalog/Content.php b/src/Backend/Catalog/Content.php index 8dfcb6f8..293ca64a 100644 --- a/src/Backend/Catalog/Content.php +++ b/src/Backend/Catalog/Content.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog; +namespace Famoser\PdfGenerator\Backend\Catalog; -use PdfGenerator\Backend\Catalog\Base\BaseStructure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; readonly class Content extends BaseStructure { diff --git a/src/Backend/Catalog/Contents.php b/src/Backend/Catalog/Contents.php index a3cce73a..b2609606 100644 --- a/src/Backend/Catalog/Contents.php +++ b/src/Backend/Catalog/Contents.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog; +namespace Famoser\PdfGenerator\Backend\Catalog; -use PdfGenerator\Backend\Catalog\Base\BaseStructure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; readonly class Contents extends BaseStructure { diff --git a/src/Backend/Catalog/Font.php b/src/Backend/Catalog/Font.php index e71093e2..a302ca64 100644 --- a/src/Backend/Catalog/Font.php +++ b/src/Backend/Catalog/Font.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog; +namespace Famoser\PdfGenerator\Backend\Catalog; -use PdfGenerator\Backend\Catalog\Base\BaseIdentifiableStructure; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseIdentifiableStructure; abstract readonly class Font extends BaseIdentifiableStructure { diff --git a/src/Backend/Catalog/Font/Structure/CIDFont.php b/src/Backend/Catalog/Font/Structure/CIDFont.php index bfc976f0..eff22f23 100644 --- a/src/Backend/Catalog/Font/Structure/CIDFont.php +++ b/src/Backend/Catalog/Font/Structure/CIDFont.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog\Font\Structure; +namespace Famoser\PdfGenerator\Backend\Catalog\Font\Structure; -use PdfGenerator\Backend\Catalog\Base\BaseStructure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\DictionaryObject; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\DictionaryObject; readonly class CIDFont extends BaseStructure { diff --git a/src/Backend/Catalog/Font/Structure/CIDSystemInfo.php b/src/Backend/Catalog/Font/Structure/CIDSystemInfo.php index 909acf68..c1e28e69 100644 --- a/src/Backend/Catalog/Font/Structure/CIDSystemInfo.php +++ b/src/Backend/Catalog/Font/Structure/CIDSystemInfo.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog\Font\Structure; +namespace Famoser\PdfGenerator\Backend\Catalog\Font\Structure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Token\DictionaryToken; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Token\DictionaryToken; /** * specifies the character set used diff --git a/src/Backend/Catalog/Font/Structure/CMap.php b/src/Backend/Catalog/Font/Structure/CMap.php index 7339f5aa..7e686d93 100644 --- a/src/Backend/Catalog/Font/Structure/CMap.php +++ b/src/Backend/Catalog/Font/Structure/CMap.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog\Font\Structure; +namespace Famoser\PdfGenerator\Backend\Catalog\Font\Structure; -use PdfGenerator\Backend\Catalog\Base\BaseStructure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\StreamObject; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\StreamObject; readonly class CMap extends BaseStructure { diff --git a/src/Backend/Catalog/Font/Structure/FontDescriptor.php b/src/Backend/Catalog/Font/Structure/FontDescriptor.php index 064c901b..14b8a047 100644 --- a/src/Backend/Catalog/Font/Structure/FontDescriptor.php +++ b/src/Backend/Catalog/Font/Structure/FontDescriptor.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog\Font\Structure; +namespace Famoser\PdfGenerator\Backend\Catalog\Font\Structure; -use PdfGenerator\Backend\Catalog\Base\BaseStructure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\DictionaryObject; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\DictionaryObject; readonly class FontDescriptor extends BaseStructure { diff --git a/src/Backend/Catalog/Font/Structure/FontStream.php b/src/Backend/Catalog/Font/Structure/FontStream.php index 47215ffe..c3d5f3bf 100644 --- a/src/Backend/Catalog/Font/Structure/FontStream.php +++ b/src/Backend/Catalog/Font/Structure/FontStream.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog\Font\Structure; +namespace Famoser\PdfGenerator\Backend\Catalog\Font\Structure; -use PdfGenerator\Backend\Catalog\Base\BaseStructure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\StreamObject; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\StreamObject; readonly class FontStream extends BaseStructure { diff --git a/src/Backend/Catalog/Font/TrueType.php b/src/Backend/Catalog/Font/TrueType.php index 509266d4..c26076b2 100644 --- a/src/Backend/Catalog/Font/TrueType.php +++ b/src/Backend/Catalog/Font/TrueType.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog\Font; +namespace Famoser\PdfGenerator\Backend\Catalog\Font; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\DictionaryObject; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\DictionaryObject; readonly class TrueType extends Type1 { diff --git a/src/Backend/Catalog/Font/Type0.php b/src/Backend/Catalog/Font/Type0.php index 292bbf0b..27e6536d 100644 --- a/src/Backend/Catalog/Font/Type0.php +++ b/src/Backend/Catalog/Font/Type0.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog\Font; +namespace Famoser\PdfGenerator\Backend\Catalog\Font; -use PdfGenerator\Backend\Catalog\Font; -use PdfGenerator\Backend\Catalog\Font\Structure\CMap; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\DictionaryObject; +use Famoser\PdfGenerator\Backend\Catalog\Font; +use Famoser\PdfGenerator\Backend\Catalog\Font\Structure\CMap; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\DictionaryObject; readonly class Type0 extends Font { diff --git a/src/Backend/Catalog/Font/Type1.php b/src/Backend/Catalog/Font/Type1.php index c4ae4f46..4b3ff1c1 100644 --- a/src/Backend/Catalog/Font/Type1.php +++ b/src/Backend/Catalog/Font/Type1.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog\Font; +namespace Famoser\PdfGenerator\Backend\Catalog\Font; -use PdfGenerator\Backend\Catalog\Font; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\Catalog\Font; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; readonly class Type1 extends Font { diff --git a/src/Backend/Catalog/Image.php b/src/Backend/Catalog/Image.php index 0d2412a2..4eaf85fd 100644 --- a/src/Backend/Catalog/Image.php +++ b/src/Backend/Catalog/Image.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog; +namespace Famoser\PdfGenerator\Backend\Catalog; -use PdfGenerator\Backend\Catalog\Base\BaseIdentifiableStructure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseIdentifiableStructure; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; readonly class Image extends BaseIdentifiableStructure { diff --git a/src/Backend/Catalog/Page.php b/src/Backend/Catalog/Page.php index efdec0dd..88f95831 100644 --- a/src/Backend/Catalog/Page.php +++ b/src/Backend/Catalog/Page.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog; +namespace Famoser\PdfGenerator\Backend\Catalog; -use PdfGenerator\Backend\Catalog\Base\BaseStructure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; readonly class Page extends BaseStructure { diff --git a/src/Backend/Catalog/Pages.php b/src/Backend/Catalog/Pages.php index 69b57363..8c802259 100644 --- a/src/Backend/Catalog/Pages.php +++ b/src/Backend/Catalog/Pages.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog; +namespace Famoser\PdfGenerator\Backend\Catalog; -use PdfGenerator\Backend\Catalog\Base\BaseStructure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; readonly class Pages extends BaseStructure { diff --git a/src/Backend/Catalog/Resources.php b/src/Backend/Catalog/Resources.php index e21f6692..fbb2952b 100644 --- a/src/Backend/Catalog/Resources.php +++ b/src/Backend/Catalog/Resources.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Catalog; +namespace Famoser\PdfGenerator\Backend\Catalog; -use PdfGenerator\Backend\Catalog\Base\BaseStructure; -use PdfGenerator\Backend\CatalogVisitor; -use PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\CatalogVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; readonly class Resources extends BaseStructure { diff --git a/src/Backend/CatalogVisitor.php b/src/Backend/CatalogVisitor.php index 2545f1b9..8c18fe7e 100644 --- a/src/Backend/CatalogVisitor.php +++ b/src/Backend/CatalogVisitor.php @@ -9,18 +9,18 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend; - -use PdfGenerator\Backend\Catalog\Base\BaseIdentifiableStructure; -use PdfGenerator\Backend\Catalog\Font\Structure\CIDSystemInfo; -use PdfGenerator\Backend\Catalog\Font\Structure\CMap; -use PdfGenerator\Backend\Catalog\Font\Structure\FontDescriptor; -use PdfGenerator\Backend\Catalog\Page; -use PdfGenerator\Backend\File\File; -use PdfGenerator\Backend\File\Object\Base\BaseObject; -use PdfGenerator\Backend\File\Object\DictionaryObject; -use PdfGenerator\Backend\File\Object\StreamObject; -use PdfGenerator\Backend\File\Token\DictionaryToken; +namespace Famoser\PdfGenerator\Backend; + +use Famoser\PdfGenerator\Backend\Catalog\Base\BaseIdentifiableStructure; +use Famoser\PdfGenerator\Backend\Catalog\Font\Structure\CIDSystemInfo; +use Famoser\PdfGenerator\Backend\Catalog\Font\Structure\CMap; +use Famoser\PdfGenerator\Backend\Catalog\Font\Structure\FontDescriptor; +use Famoser\PdfGenerator\Backend\Catalog\Page; +use Famoser\PdfGenerator\Backend\File\File; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\File\Object\DictionaryObject; +use Famoser\PdfGenerator\Backend\File\Object\StreamObject; +use Famoser\PdfGenerator\Backend\File\Token\DictionaryToken; class CatalogVisitor { diff --git a/src/Backend/File/File.php b/src/Backend/File/File.php index c51f90ac..af449b24 100644 --- a/src/Backend/File/File.php +++ b/src/Backend/File/File.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File; - -use PdfGenerator\Backend\File\Object\DictionaryObject; -use PdfGenerator\Backend\File\Object\StreamObject; -use PdfGenerator\Backend\File\Structure\Body; -use PdfGenerator\Backend\File\Structure\CrossReferenceTable; -use PdfGenerator\Backend\File\Structure\FileHeader; -use PdfGenerator\Backend\File\Structure\FileTrailer; +namespace Famoser\PdfGenerator\Backend\File; + +use Famoser\PdfGenerator\Backend\File\Object\DictionaryObject; +use Famoser\PdfGenerator\Backend\File\Object\StreamObject; +use Famoser\PdfGenerator\Backend\File\Structure\Body; +use Famoser\PdfGenerator\Backend\File\Structure\CrossReferenceTable; +use Famoser\PdfGenerator\Backend\File\Structure\FileHeader; +use Famoser\PdfGenerator\Backend\File\Structure\FileTrailer; class File { diff --git a/src/Backend/File/Object/Base/BaseObject.php b/src/Backend/File/Object/Base/BaseObject.php index b0722160..120d7cda 100644 --- a/src/Backend/File/Object/Base/BaseObject.php +++ b/src/Backend/File/Object/Base/BaseObject.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Object\Base; +namespace Famoser\PdfGenerator\Backend\File\Object\Base; -use PdfGenerator\Backend\File\ObjectVisitor; +use Famoser\PdfGenerator\Backend\File\ObjectVisitor; abstract class BaseObject { diff --git a/src/Backend/File/Object/DictionaryObject.php b/src/Backend/File/Object/DictionaryObject.php index 6056b696..2e7e7f73 100644 --- a/src/Backend/File/Object/DictionaryObject.php +++ b/src/Backend/File/Object/DictionaryObject.php @@ -9,15 +9,15 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Object; - -use PdfGenerator\Backend\File\Object\Base\BaseObject; -use PdfGenerator\Backend\File\ObjectVisitor; -use PdfGenerator\Backend\File\Token\ArrayToken; -use PdfGenerator\Backend\File\Token\DictionaryToken; -use PdfGenerator\Backend\File\Token\NameToken; -use PdfGenerator\Backend\File\Token\NumberToken; -use PdfGenerator\Backend\File\Token\ReferenceToken; +namespace Famoser\PdfGenerator\Backend\File\Object; + +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\File\ObjectVisitor; +use Famoser\PdfGenerator\Backend\File\Token\ArrayToken; +use Famoser\PdfGenerator\Backend\File\Token\DictionaryToken; +use Famoser\PdfGenerator\Backend\File\Token\NameToken; +use Famoser\PdfGenerator\Backend\File\Token\NumberToken; +use Famoser\PdfGenerator\Backend\File\Token\ReferenceToken; class DictionaryObject extends BaseObject { diff --git a/src/Backend/File/Object/StreamObject.php b/src/Backend/File/Object/StreamObject.php index 3229b6ae..6f96c757 100644 --- a/src/Backend/File/Object/StreamObject.php +++ b/src/Backend/File/Object/StreamObject.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Object; +namespace Famoser\PdfGenerator\Backend\File\Object; -use PdfGenerator\Backend\File\Object\Base\BaseObject; -use PdfGenerator\Backend\File\ObjectVisitor; -use PdfGenerator\Backend\File\Token\DictionaryToken; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\File\ObjectVisitor; +use Famoser\PdfGenerator\Backend\File\Token\DictionaryToken; class StreamObject extends BaseObject { diff --git a/src/Backend/File/ObjectVisitor.php b/src/Backend/File/ObjectVisitor.php index 81bdfb5f..cb925c7d 100644 --- a/src/Backend/File/ObjectVisitor.php +++ b/src/Backend/File/ObjectVisitor.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File; +namespace Famoser\PdfGenerator\Backend\File; -use PdfGenerator\Backend\File\Object\Base\BaseObject; -use PdfGenerator\Backend\File\Object\DictionaryObject; -use PdfGenerator\Backend\File\Object\StreamObject; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\File\Object\DictionaryObject; +use Famoser\PdfGenerator\Backend\File\Object\StreamObject; class ObjectVisitor { diff --git a/src/Backend/File/Structure/Base/BaseStructure.php b/src/Backend/File/Structure/Base/BaseStructure.php index d80510f1..6ebfa3dc 100644 --- a/src/Backend/File/Structure/Base/BaseStructure.php +++ b/src/Backend/File/Structure/Base/BaseStructure.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Structure\Base; +namespace Famoser\PdfGenerator\Backend\File\Structure\Base; -use PdfGenerator\Backend\File\StructureVisitor; +use Famoser\PdfGenerator\Backend\File\StructureVisitor; abstract class BaseStructure { diff --git a/src/Backend/File/Structure/Body.php b/src/Backend/File/Structure/Body.php index 466f68e5..e8160d65 100644 --- a/src/Backend/File/Structure/Body.php +++ b/src/Backend/File/Structure/Body.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Structure; +namespace Famoser\PdfGenerator\Backend\File\Structure; -use PdfGenerator\Backend\File\Object\Base\BaseObject; -use PdfGenerator\Backend\File\Structure\Base\BaseStructure; -use PdfGenerator\Backend\File\StructureVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\File\Structure\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\File\StructureVisitor; class Body extends BaseStructure { diff --git a/src/Backend/File/Structure/CrossReferenceTable.php b/src/Backend/File/Structure/CrossReferenceTable.php index 18260615..0aa1bd94 100644 --- a/src/Backend/File/Structure/CrossReferenceTable.php +++ b/src/Backend/File/Structure/CrossReferenceTable.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Structure; +namespace Famoser\PdfGenerator\Backend\File\Structure; -use PdfGenerator\Backend\File\Structure\Base\BaseStructure; -use PdfGenerator\Backend\File\StructureVisitor; +use Famoser\PdfGenerator\Backend\File\Structure\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\File\StructureVisitor; class CrossReferenceTable extends BaseStructure { diff --git a/src/Backend/File/Structure/FileHeader.php b/src/Backend/File/Structure/FileHeader.php index 7bf44dbe..91c8ec09 100644 --- a/src/Backend/File/Structure/FileHeader.php +++ b/src/Backend/File/Structure/FileHeader.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Structure; +namespace Famoser\PdfGenerator\Backend\File\Structure; -use PdfGenerator\Backend\File\Structure\Base\BaseStructure; -use PdfGenerator\Backend\File\StructureVisitor; +use Famoser\PdfGenerator\Backend\File\Structure\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\File\StructureVisitor; class FileHeader extends BaseStructure { diff --git a/src/Backend/File/Structure/FileTrailer.php b/src/Backend/File/Structure/FileTrailer.php index 14e9d068..86cf575b 100644 --- a/src/Backend/File/Structure/FileTrailer.php +++ b/src/Backend/File/Structure/FileTrailer.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Structure; +namespace Famoser\PdfGenerator\Backend\File\Structure; -use PdfGenerator\Backend\File\Object\Base\BaseObject; -use PdfGenerator\Backend\File\Structure\Base\BaseStructure; -use PdfGenerator\Backend\File\StructureVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\File\Structure\Base\BaseStructure; +use Famoser\PdfGenerator\Backend\File\StructureVisitor; class FileTrailer extends BaseStructure { diff --git a/src/Backend/File/StructureVisitor.php b/src/Backend/File/StructureVisitor.php index f307fa68..1a0781e7 100644 --- a/src/Backend/File/StructureVisitor.php +++ b/src/Backend/File/StructureVisitor.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File; +namespace Famoser\PdfGenerator\Backend\File; -use PdfGenerator\Backend\File\Structure\CrossReferenceTable; -use PdfGenerator\Backend\File\Token\DictionaryToken; +use Famoser\PdfGenerator\Backend\File\Structure\CrossReferenceTable; +use Famoser\PdfGenerator\Backend\File\Token\DictionaryToken; class StructureVisitor { diff --git a/src/Backend/File/Token/ArrayToken.php b/src/Backend/File/Token/ArrayToken.php index 2c59b892..ad7148de 100644 --- a/src/Backend/File/Token/ArrayToken.php +++ b/src/Backend/File/Token/ArrayToken.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Token; +namespace Famoser\PdfGenerator\Backend\File\Token; -use PdfGenerator\Backend\File\Token\Base\BaseToken; -use PdfGenerator\Backend\File\TokenVisitor; +use Famoser\PdfGenerator\Backend\File\Token\Base\BaseToken; +use Famoser\PdfGenerator\Backend\File\TokenVisitor; class ArrayToken extends BaseToken { diff --git a/src/Backend/File/Token/Base/BaseToken.php b/src/Backend/File/Token/Base/BaseToken.php index 33837bdc..bb01c2bb 100644 --- a/src/Backend/File/Token/Base/BaseToken.php +++ b/src/Backend/File/Token/Base/BaseToken.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Token\Base; +namespace Famoser\PdfGenerator\Backend\File\Token\Base; -use PdfGenerator\Backend\File\TokenVisitor; +use Famoser\PdfGenerator\Backend\File\TokenVisitor; abstract class BaseToken { diff --git a/src/Backend/File/Token/DictionaryToken.php b/src/Backend/File/Token/DictionaryToken.php index 7483fd09..23268aac 100644 --- a/src/Backend/File/Token/DictionaryToken.php +++ b/src/Backend/File/Token/DictionaryToken.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Token; +namespace Famoser\PdfGenerator\Backend\File\Token; -use PdfGenerator\Backend\File\Object\Base\BaseObject; -use PdfGenerator\Backend\File\Token\Base\BaseToken; -use PdfGenerator\Backend\File\TokenVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\File\Token\Base\BaseToken; +use Famoser\PdfGenerator\Backend\File\TokenVisitor; class DictionaryToken extends BaseToken { diff --git a/src/Backend/File/Token/NameToken.php b/src/Backend/File/Token/NameToken.php index 0d024edb..8cd3be5d 100644 --- a/src/Backend/File/Token/NameToken.php +++ b/src/Backend/File/Token/NameToken.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Token; +namespace Famoser\PdfGenerator\Backend\File\Token; -use PdfGenerator\Backend\File\Token\Base\BaseToken; -use PdfGenerator\Backend\File\TokenVisitor; +use Famoser\PdfGenerator\Backend\File\Token\Base\BaseToken; +use Famoser\PdfGenerator\Backend\File\TokenVisitor; class NameToken extends BaseToken { diff --git a/src/Backend/File/Token/NumberToken.php b/src/Backend/File/Token/NumberToken.php index b7c31e32..35fe1cdc 100644 --- a/src/Backend/File/Token/NumberToken.php +++ b/src/Backend/File/Token/NumberToken.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Token; +namespace Famoser\PdfGenerator\Backend\File\Token; -use PdfGenerator\Backend\File\Token\Base\BaseToken; -use PdfGenerator\Backend\File\TokenVisitor; +use Famoser\PdfGenerator\Backend\File\Token\Base\BaseToken; +use Famoser\PdfGenerator\Backend\File\TokenVisitor; class NumberToken extends BaseToken { diff --git a/src/Backend/File/Token/ReferenceToken.php b/src/Backend/File/Token/ReferenceToken.php index 563aeb74..1d682491 100644 --- a/src/Backend/File/Token/ReferenceToken.php +++ b/src/Backend/File/Token/ReferenceToken.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Token; +namespace Famoser\PdfGenerator\Backend\File\Token; -use PdfGenerator\Backend\File\Object\Base\BaseObject; -use PdfGenerator\Backend\File\Token\Base\BaseToken; -use PdfGenerator\Backend\File\TokenVisitor; +use Famoser\PdfGenerator\Backend\File\Object\Base\BaseObject; +use Famoser\PdfGenerator\Backend\File\Token\Base\BaseToken; +use Famoser\PdfGenerator\Backend\File\TokenVisitor; class ReferenceToken extends BaseToken { diff --git a/src/Backend/File/Token/TextToken.php b/src/Backend/File/Token/TextToken.php index 31a82497..87489666 100644 --- a/src/Backend/File/Token/TextToken.php +++ b/src/Backend/File/Token/TextToken.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File\Token; +namespace Famoser\PdfGenerator\Backend\File\Token; -use PdfGenerator\Backend\File\Token\Base\BaseToken; -use PdfGenerator\Backend\File\TokenVisitor; +use Famoser\PdfGenerator\Backend\File\Token\Base\BaseToken; +use Famoser\PdfGenerator\Backend\File\TokenVisitor; class TextToken extends BaseToken { diff --git a/src/Backend/File/TokenVisitor.php b/src/Backend/File/TokenVisitor.php index 925768d9..19c5bfc2 100644 --- a/src/Backend/File/TokenVisitor.php +++ b/src/Backend/File/TokenVisitor.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\File; - -use PdfGenerator\Backend\File\Token\ArrayToken; -use PdfGenerator\Backend\File\Token\Base\BaseToken; -use PdfGenerator\Backend\File\Token\DictionaryToken; -use PdfGenerator\Backend\File\Token\NumberToken; -use PdfGenerator\Backend\File\Token\ReferenceToken; -use PdfGenerator\Backend\File\Token\TextToken; +namespace Famoser\PdfGenerator\Backend\File; + +use Famoser\PdfGenerator\Backend\File\Token\ArrayToken; +use Famoser\PdfGenerator\Backend\File\Token\Base\BaseToken; +use Famoser\PdfGenerator\Backend\File\Token\DictionaryToken; +use Famoser\PdfGenerator\Backend\File\Token\NumberToken; +use Famoser\PdfGenerator\Backend\File\Token\ReferenceToken; +use Famoser\PdfGenerator\Backend\File\Token\TextToken; class TokenVisitor { diff --git a/src/Backend/Structure/Document.php b/src/Backend/Structure/Document.php index ba063ae6..f5903af1 100644 --- a/src/Backend/Structure/Document.php +++ b/src/Backend/Structure/Document.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure; - -use PdfGenerator\Backend\Catalog\Catalog; -use PdfGenerator\Backend\Catalog\Page as CatalogPage; -use PdfGenerator\Backend\Catalog\Pages; -use PdfGenerator\Backend\Structure\Document\DocumentResources; -use PdfGenerator\Backend\Structure\Document\Page; -use PdfGenerator\Backend\Structure\Optimization\Configuration; +namespace Famoser\PdfGenerator\Backend\Structure; + +use Famoser\PdfGenerator\Backend\Catalog\Catalog; +use Famoser\PdfGenerator\Backend\Catalog\Page as CatalogPage; +use Famoser\PdfGenerator\Backend\Catalog\Pages; +use Famoser\PdfGenerator\Backend\Structure\Document\DocumentResources; +use Famoser\PdfGenerator\Backend\Structure\Document\Page; +use Famoser\PdfGenerator\Backend\Structure\Optimization\Configuration; class Document { diff --git a/src/Backend/Structure/Document/Base/BaseDocumentStructure.php b/src/Backend/Structure/Document/Base/BaseDocumentStructure.php index af04eaae..46d32867 100644 --- a/src/Backend/Structure/Document/Base/BaseDocumentStructure.php +++ b/src/Backend/Structure/Document/Base/BaseDocumentStructure.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Base; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Base; -use PdfGenerator\Backend\Structure\DocumentVisitor; +use Famoser\PdfGenerator\Backend\Structure\DocumentVisitor; abstract readonly class BaseDocumentStructure { diff --git a/src/Backend/Structure/Document/DocumentResources.php b/src/Backend/Structure/Document/DocumentResources.php index 61ef8160..534147fc 100644 --- a/src/Backend/Structure/Document/DocumentResources.php +++ b/src/Backend/Structure/Document/DocumentResources.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document; +namespace Famoser\PdfGenerator\Backend\Structure\Document; -use PdfGenerator\Backend\Catalog\Font as CatalogFont; -use PdfGenerator\Backend\Catalog\Image as CatalogImage; -use PdfGenerator\Backend\Structure\Document\Base\BaseDocumentStructure; -use PdfGenerator\Backend\Structure\DocumentVisitor; +use Famoser\PdfGenerator\Backend\Catalog\Font as CatalogFont; +use Famoser\PdfGenerator\Backend\Catalog\Image as CatalogImage; +use Famoser\PdfGenerator\Backend\Structure\Document\Base\BaseDocumentStructure; +use Famoser\PdfGenerator\Backend\Structure\DocumentVisitor; class DocumentResources { diff --git a/src/Backend/Structure/Document/Font.php b/src/Backend/Structure/Document/Font.php index d3ffa6ac..5a4c5500 100644 --- a/src/Backend/Structure/Document/Font.php +++ b/src/Backend/Structure/Document/Font.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document; +namespace Famoser\PdfGenerator\Backend\Structure\Document; -use PdfGenerator\Backend\Structure\Document\Base\BaseDocumentStructure; +use Famoser\PdfGenerator\Backend\Structure\Document\Base\BaseDocumentStructure; abstract readonly class Font extends BaseDocumentStructure { diff --git a/src/Backend/Structure/Document/Font/CMapCreator.php b/src/Backend/Structure/Document/Font/CMapCreator.php index 386b8040..babb3778 100644 --- a/src/Backend/Structure/Document/Font/CMapCreator.php +++ b/src/Backend/Structure/Document/Font/CMapCreator.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Font; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Font; -use PdfGenerator\Backend\Catalog\Font\Structure\CIDSystemInfo; -use PdfGenerator\Backend\Catalog\Font\Structure\CMap; -use PdfGenerator\Font\IR\Structure\Character; +use Famoser\PdfGenerator\Backend\Catalog\Font\Structure\CIDSystemInfo; +use Famoser\PdfGenerator\Backend\Catalog\Font\Structure\CMap; +use Famoser\PdfGenerator\Font\IR\Structure\Character; readonly class CMapCreator { diff --git a/src/Backend/Structure/Document/Font/DefaultFont.php b/src/Backend/Structure/Document/Font/DefaultFont.php index cc5e9f44..42013d3f 100644 --- a/src/Backend/Structure/Document/Font/DefaultFont.php +++ b/src/Backend/Structure/Document/Font/DefaultFont.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Font; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Font; -use PdfGenerator\Backend\Catalog\Font\Type1; -use PdfGenerator\Backend\Structure\Document\Font; -use PdfGenerator\Backend\Structure\DocumentVisitor; +use Famoser\PdfGenerator\Backend\Catalog\Font\Type1; +use Famoser\PdfGenerator\Backend\Structure\Document\Font; +use Famoser\PdfGenerator\Backend\Structure\DocumentVisitor; readonly class DefaultFont extends Font { diff --git a/src/Backend/Structure/Document/Font/EmbeddedFont.php b/src/Backend/Structure/Document/Font/EmbeddedFont.php index 7702596d..7c133823 100644 --- a/src/Backend/Structure/Document/Font/EmbeddedFont.php +++ b/src/Backend/Structure/Document/Font/EmbeddedFont.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Font; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Font; -use PdfGenerator\Backend\Catalog\Font\TrueType; -use PdfGenerator\Backend\Catalog\Font\Type0; -use PdfGenerator\Backend\Structure\Document\Font; -use PdfGenerator\Backend\Structure\DocumentVisitor; +use Famoser\PdfGenerator\Backend\Catalog\Font\TrueType; +use Famoser\PdfGenerator\Backend\Catalog\Font\Type0; +use Famoser\PdfGenerator\Backend\Structure\Document\Font; +use Famoser\PdfGenerator\Backend\Structure\DocumentVisitor; readonly class EmbeddedFont extends Font { diff --git a/src/Backend/Structure/Document/Image.php b/src/Backend/Structure/Document/Image.php index 6719277a..c8a048fb 100644 --- a/src/Backend/Structure/Document/Image.php +++ b/src/Backend/Structure/Document/Image.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document; +namespace Famoser\PdfGenerator\Backend\Structure\Document; -use PdfGenerator\Backend\Structure\Document\Base\BaseDocumentStructure; -use PdfGenerator\Backend\Structure\DocumentVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Base\BaseDocumentStructure; +use Famoser\PdfGenerator\Backend\Structure\DocumentVisitor; readonly class Image extends BaseDocumentStructure { diff --git a/src/Backend/Structure/Document/Page.php b/src/Backend/Structure/Document/Page.php index f2be4e35..14efbab5 100644 --- a/src/Backend/Structure/Document/Page.php +++ b/src/Backend/Structure/Document/Page.php @@ -9,16 +9,16 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document; - -use PdfGenerator\Backend\Catalog\Content as CatalogContent; -use PdfGenerator\Backend\Catalog\Contents; -use PdfGenerator\Backend\Catalog\Font as CatalogFont; -use PdfGenerator\Backend\Catalog\Image as CatalogImage; -use PdfGenerator\Backend\Catalog\Page as CatalogPage; -use PdfGenerator\Backend\Catalog\Resources; -use PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; -use PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; +namespace Famoser\PdfGenerator\Backend\Structure\Document; + +use Famoser\PdfGenerator\Backend\Catalog\Content as CatalogContent; +use Famoser\PdfGenerator\Backend\Catalog\Contents; +use Famoser\PdfGenerator\Backend\Catalog\Font as CatalogFont; +use Famoser\PdfGenerator\Backend\Catalog\Image as CatalogImage; +use Famoser\PdfGenerator\Backend\Catalog\Page as CatalogPage; +use Famoser\PdfGenerator\Backend\Catalog\Resources; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; class Page { diff --git a/src/Backend/Structure/Document/Page/Content/Base/BaseContent.php b/src/Backend/Structure/Document/Page/Content/Base/BaseContent.php index f2d1a441..9cd0a51c 100644 --- a/src/Backend/Structure/Document/Page/Content/Base/BaseContent.php +++ b/src/Backend/Structure/Document/Page/Content/Base/BaseContent.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\Content\Base; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\Base; -use PdfGenerator\Backend\Catalog\Content; -use PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Catalog\Content; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; abstract readonly class BaseContent { diff --git a/src/Backend/Structure/Document/Page/Content/ImageContent.php b/src/Backend/Structure/Document/Page/Content/ImageContent.php index 8e5b191a..097a4d88 100644 --- a/src/Backend/Structure/Document/Page/Content/ImageContent.php +++ b/src/Backend/Structure/Document/Page/Content/ImageContent.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\Content; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\Content; -use PdfGenerator\Backend\Catalog\Content; -use PdfGenerator\Backend\Structure\Document\Image; -use PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; -use PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; -use PdfGenerator\Backend\Structure\Document\Page\StateCollections\DrawingState; +use Famoser\PdfGenerator\Backend\Catalog\Content; +use Famoser\PdfGenerator\Backend\Structure\Document\Image; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections\DrawingState; readonly class ImageContent extends BaseContent { diff --git a/src/Backend/Structure/Document/Page/Content/Paragraph/Phrase.php b/src/Backend/Structure/Document/Page/Content/Paragraph/Phrase.php index 569f0e22..275ef6f7 100644 --- a/src/Backend/Structure/Document/Page/Content/Paragraph/Phrase.php +++ b/src/Backend/Structure/Document/Page/Content/Paragraph/Phrase.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\Content\Paragraph; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\Paragraph; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; -use PdfGenerator\Backend\Structure\Document\Page\State\TextState; -use PdfGenerator\Backend\Structure\Document\Page\StateCollections\WritingState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\TextState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections\WritingState; readonly class Phrase { diff --git a/src/Backend/Structure/Document/Page/Content/ParagraphContent.php b/src/Backend/Structure/Document/Page/Content/ParagraphContent.php index e5f3fb22..2e0eec12 100644 --- a/src/Backend/Structure/Document/Page/Content/ParagraphContent.php +++ b/src/Backend/Structure/Document/Page/Content/ParagraphContent.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\Content; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\Content; -use PdfGenerator\Backend\Catalog\Content; -use PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; -use PdfGenerator\Backend\Structure\Document\Page\Content\Paragraph\Phrase; -use PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; -use PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; +use Famoser\PdfGenerator\Backend\Catalog\Content; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\Paragraph\Phrase; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; readonly class ParagraphContent extends BaseContent { diff --git a/src/Backend/Structure/Document/Page/Content/RectangleContent.php b/src/Backend/Structure/Document/Page/Content/RectangleContent.php index 20febb9f..6464c798 100644 --- a/src/Backend/Structure/Document/Page/Content/RectangleContent.php +++ b/src/Backend/Structure/Document/Page/Content/RectangleContent.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\Content; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\Content; -use PdfGenerator\Backend\Catalog\Content; -use PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; -use PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; -use PdfGenerator\Backend\Structure\Document\Page\StateCollections\DrawingState; +use Famoser\PdfGenerator\Backend\Catalog\Content; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections\DrawingState; readonly class RectangleContent extends BaseContent { diff --git a/src/Backend/Structure/Document/Page/Content/TextContent.php b/src/Backend/Structure/Document/Page/Content/TextContent.php index 804c5911..9347032b 100644 --- a/src/Backend/Structure/Document/Page/Content/TextContent.php +++ b/src/Backend/Structure/Document/Page/Content/TextContent.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\Content; - -use PdfGenerator\Backend\Catalog\Content; -use PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; -use PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; -use PdfGenerator\Backend\Structure\Document\Page\State\TextState; -use PdfGenerator\Backend\Structure\Document\Page\StateCollections\WritingState; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\Content; + +use Famoser\PdfGenerator\Backend\Catalog\Content; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\ContentVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\TextState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections\WritingState; readonly class TextContent extends BaseContent { diff --git a/src/Backend/Structure/Document/Page/ContentVisitor.php b/src/Backend/Structure/Document/Page/ContentVisitor.php index d20dbe56..98ef01bb 100644 --- a/src/Backend/Structure/Document/Page/ContentVisitor.php +++ b/src/Backend/Structure/Document/Page/ContentVisitor.php @@ -9,17 +9,17 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page; - -use PdfGenerator\Backend\Catalog\Content; -use PdfGenerator\Backend\Structure\Document\DocumentResources; -use PdfGenerator\Backend\Structure\Document\Font; -use PdfGenerator\Backend\Structure\Document\Page\Content\ImageContent; -use PdfGenerator\Backend\Structure\Document\Page\Content\ParagraphContent; -use PdfGenerator\Backend\Structure\Document\Page\Content\RectangleContent; -use PdfGenerator\Backend\Structure\Document\Page\Content\TextContent; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; -use PdfGenerator\Backend\Structure\Document\Page\StateCollections\FullState; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page; + +use Famoser\PdfGenerator\Backend\Catalog\Content; +use Famoser\PdfGenerator\Backend\Structure\Document\DocumentResources; +use Famoser\PdfGenerator\Backend\Structure\Document\Font; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\ImageContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\ParagraphContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\RectangleContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\TextContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections\FullState; class ContentVisitor { diff --git a/src/Backend/Structure/Document/Page/State/Base/BaseState.php b/src/Backend/Structure/Document/Page/State/Base/BaseState.php index fa10d5e7..64d4f9de 100644 --- a/src/Backend/Structure/Document/Page/State/Base/BaseState.php +++ b/src/Backend/Structure/Document/Page/State/Base/BaseState.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\State\Base; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base; -use PdfGenerator\Backend\Structure\Document\Page\StateTransitionVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateTransitionVisitor; abstract readonly class BaseState { diff --git a/src/Backend/Structure/Document/Page/State/ColorState.php b/src/Backend/Structure/Document/Page/State/ColorState.php index f403d96e..30a61251 100644 --- a/src/Backend/Structure/Document/Page/State/ColorState.php +++ b/src/Backend/Structure/Document/Page/State/ColorState.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\State; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\State; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; -use PdfGenerator\Backend\Structure\Document\Page\StateTransitionVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateTransitionVisitor; readonly class ColorState extends BaseState { diff --git a/src/Backend/Structure/Document/Page/State/GeneralGraphicState.php b/src/Backend/Structure/Document/Page/State/GeneralGraphicState.php index 06f3bf84..2d67d8bf 100644 --- a/src/Backend/Structure/Document/Page/State/GeneralGraphicState.php +++ b/src/Backend/Structure/Document/Page/State/GeneralGraphicState.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\State; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\State; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; -use PdfGenerator\Backend\Structure\Document\Page\StateTransitionVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateTransitionVisitor; readonly class GeneralGraphicState extends BaseState { diff --git a/src/Backend/Structure/Document/Page/State/TextState.php b/src/Backend/Structure/Document/Page/State/TextState.php index 3bf3a382..6f3faca2 100644 --- a/src/Backend/Structure/Document/Page/State/TextState.php +++ b/src/Backend/Structure/Document/Page/State/TextState.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\State; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\State; -use PdfGenerator\Backend\Structure\Document\Font; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; -use PdfGenerator\Backend\Structure\Document\Page\StateTransitionVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Font; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateTransitionVisitor; readonly class TextState extends BaseState { diff --git a/src/Backend/Structure/Document/Page/StateCollections/Base/BaseStateCollection.php b/src/Backend/Structure/Document/Page/StateCollections/Base/BaseStateCollection.php index ef56430d..d09bb62a 100644 --- a/src/Backend/Structure/Document/Page/StateCollections/Base/BaseStateCollection.php +++ b/src/Backend/Structure/Document/Page/StateCollections/Base/BaseStateCollection.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\StateCollections\Base; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections\Base; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; abstract readonly class BaseStateCollection { diff --git a/src/Backend/Structure/Document/Page/StateCollections/DrawingState.php b/src/Backend/Structure/Document/Page/StateCollections/DrawingState.php index 195df44d..8a0cbedb 100644 --- a/src/Backend/Structure/Document/Page/StateCollections/DrawingState.php +++ b/src/Backend/Structure/Document/Page/StateCollections/DrawingState.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\StateCollections; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; -use PdfGenerator\Backend\Structure\Document\Page\State\ColorState; -use PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; -use PdfGenerator\Backend\Structure\Document\Page\StateCollections\Base\BaseStateCollection; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\ColorState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections\Base\BaseStateCollection; readonly class DrawingState extends BaseStateCollection { diff --git a/src/Backend/Structure/Document/Page/StateCollections/FullState.php b/src/Backend/Structure/Document/Page/StateCollections/FullState.php index 32246964..bf0cfcdb 100644 --- a/src/Backend/Structure/Document/Page/StateCollections/FullState.php +++ b/src/Backend/Structure/Document/Page/StateCollections/FullState.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\StateCollections; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections; -use PdfGenerator\Backend\Structure\Document\Page\State\ColorState; -use PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; -use PdfGenerator\Backend\Structure\Document\Page\State\TextState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\ColorState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\TextState; readonly class FullState { diff --git a/src/Backend/Structure/Document/Page/StateCollections/WritingState.php b/src/Backend/Structure/Document/Page/StateCollections/WritingState.php index 68871725..76303e26 100644 --- a/src/Backend/Structure/Document/Page/StateCollections/WritingState.php +++ b/src/Backend/Structure/Document/Page/StateCollections/WritingState.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page\StateCollections; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections; -use PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; -use PdfGenerator\Backend\Structure\Document\Page\State\ColorState; -use PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; -use PdfGenerator\Backend\Structure\Document\Page\State\TextState; -use PdfGenerator\Backend\Structure\Document\Page\StateCollections\Base\BaseStateCollection; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\Base\BaseState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\ColorState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\TextState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections\Base\BaseStateCollection; readonly class WritingState extends BaseStateCollection { diff --git a/src/Backend/Structure/Document/Page/StateTransitionVisitor.php b/src/Backend/Structure/Document/Page/StateTransitionVisitor.php index d09cd2d5..47f70427 100644 --- a/src/Backend/Structure/Document/Page/StateTransitionVisitor.php +++ b/src/Backend/Structure/Document/Page/StateTransitionVisitor.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Document\Page; - -use PdfGenerator\Backend\Structure\Document\DocumentResources; -use PdfGenerator\Backend\Structure\Document\Page\State\ColorState; -use PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; -use PdfGenerator\Backend\Structure\Document\Page\State\TextState; -use PdfGenerator\Backend\Structure\Document\Page\StateCollections\FullState; -use PdfGenerator\Utils\TransformationMatrixCalculator; +namespace Famoser\PdfGenerator\Backend\Structure\Document\Page; + +use Famoser\PdfGenerator\Backend\Structure\Document\DocumentResources; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\ColorState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\TextState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections\FullState; +use Famoser\PdfGenerator\Utils\TransformationMatrixCalculator; class StateTransitionVisitor { diff --git a/src/Backend/Structure/DocumentVisitor.php b/src/Backend/Structure/DocumentVisitor.php index af1649fa..38c7b8ee 100644 --- a/src/Backend/Structure/DocumentVisitor.php +++ b/src/Backend/Structure/DocumentVisitor.php @@ -9,27 +9,27 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure; - -use PdfGenerator\Backend\Catalog\Font\Structure\CIDFont; -use PdfGenerator\Backend\Catalog\Font\Structure\CIDSystemInfo; -use PdfGenerator\Backend\Catalog\Font\Structure\FontDescriptor; -use PdfGenerator\Backend\Catalog\Font\Structure\FontStream; -use PdfGenerator\Backend\Catalog\Font\TrueType; -use PdfGenerator\Backend\Catalog\Font\Type0; -use PdfGenerator\Backend\Catalog\Font\Type1; -use PdfGenerator\Backend\Catalog\Image as CatalogImage; -use PdfGenerator\Backend\Structure\Document\Font\CMapCreator; -use PdfGenerator\Backend\Structure\Document\Font\DefaultFont; -use PdfGenerator\Backend\Structure\Document\Font\EmbeddedFont; -use PdfGenerator\Backend\Structure\Document\Image; -use PdfGenerator\Backend\Structure\Optimization\Configuration; -use PdfGenerator\Backend\Structure\Optimization\FontOptimizer; -use PdfGenerator\Backend\Structure\Optimization\ImageOptimizer; -use PdfGenerator\Font\Frontend\File\Table\HHeaTable; -use PdfGenerator\Font\Frontend\File\Table\OS2Table; -use PdfGenerator\Font\IR\Structure\Character; -use PdfGenerator\Font\IR\Structure\Font; +namespace Famoser\PdfGenerator\Backend\Structure; + +use Famoser\PdfGenerator\Backend\Catalog\Font\Structure\CIDFont; +use Famoser\PdfGenerator\Backend\Catalog\Font\Structure\CIDSystemInfo; +use Famoser\PdfGenerator\Backend\Catalog\Font\Structure\FontDescriptor; +use Famoser\PdfGenerator\Backend\Catalog\Font\Structure\FontStream; +use Famoser\PdfGenerator\Backend\Catalog\Font\TrueType; +use Famoser\PdfGenerator\Backend\Catalog\Font\Type0; +use Famoser\PdfGenerator\Backend\Catalog\Font\Type1; +use Famoser\PdfGenerator\Backend\Catalog\Image as CatalogImage; +use Famoser\PdfGenerator\Backend\Structure\Document\Font\CMapCreator; +use Famoser\PdfGenerator\Backend\Structure\Document\Font\DefaultFont; +use Famoser\PdfGenerator\Backend\Structure\Document\Font\EmbeddedFont; +use Famoser\PdfGenerator\Backend\Structure\Document\Image; +use Famoser\PdfGenerator\Backend\Structure\Optimization\Configuration; +use Famoser\PdfGenerator\Backend\Structure\Optimization\FontOptimizer; +use Famoser\PdfGenerator\Backend\Structure\Optimization\ImageOptimizer; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HHeaTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\OS2Table; +use Famoser\PdfGenerator\Font\IR\Structure\Character; +use Famoser\PdfGenerator\Font\IR\Structure\Font; class DocumentVisitor { diff --git a/src/Backend/Structure/Optimization/Configuration.php b/src/Backend/Structure/Optimization/Configuration.php index b1f1934b..b324aeab 100644 --- a/src/Backend/Structure/Optimization/Configuration.php +++ b/src/Backend/Structure/Optimization/Configuration.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Optimization; +namespace Famoser\PdfGenerator\Backend\Structure\Optimization; readonly class Configuration { diff --git a/src/Backend/Structure/Optimization/FontOptimizer.php b/src/Backend/Structure/Optimization/FontOptimizer.php index f80dfad4..79c909d0 100644 --- a/src/Backend/Structure/Optimization/FontOptimizer.php +++ b/src/Backend/Structure/Optimization/FontOptimizer.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Optimization; +namespace Famoser\PdfGenerator\Backend\Structure\Optimization; -use PdfGenerator\Font\Backend\FileWriter; -use PdfGenerator\Font\IR\CharacterRepository; -use PdfGenerator\Font\IR\Optimizer; -use PdfGenerator\Font\IR\Structure\Font; +use Famoser\PdfGenerator\Font\Backend\FileWriter; +use Famoser\PdfGenerator\Font\IR\CharacterRepository; +use Famoser\PdfGenerator\Font\IR\Optimizer; +use Famoser\PdfGenerator\Font\IR\Structure\Font; class FontOptimizer { diff --git a/src/Backend/Structure/Optimization/ImageOptimizer.php b/src/Backend/Structure/Optimization/ImageOptimizer.php index ff0c0ef9..26f051b4 100644 --- a/src/Backend/Structure/Optimization/ImageOptimizer.php +++ b/src/Backend/Structure/Optimization/ImageOptimizer.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Backend\Structure\Optimization; +namespace Famoser\PdfGenerator\Backend\Structure\Optimization; class ImageOptimizer { diff --git a/src/Font/Backend/File/Table/Base/BaseTable.php b/src/Font/Backend/File/Table/Base/BaseTable.php index 1185e88d..00e5a315 100644 --- a/src/Font/Backend/File/Table/Base/BaseTable.php +++ b/src/Font/Backend/File/Table/Base/BaseTable.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table\Base; +namespace Famoser\PdfGenerator\Font\Backend\File\Table\Base; -use PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; abstract class BaseTable { diff --git a/src/Font/Backend/File/Table/CMap/Format/Format.php b/src/Font/Backend/File/Table/CMap/Format/Format.php index f9ac59ef..81701f1d 100644 --- a/src/Font/Backend/File/Table/CMap/Format/Format.php +++ b/src/Font/Backend/File/Table/CMap/Format/Format.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table\CMap\Format; +namespace Famoser\PdfGenerator\Font\Backend\File\Table\CMap\Format; -use PdfGenerator\Font\Backend\File\Table\CMap\FormatVisitor; -use PdfGenerator\Font\Backend\StreamWriter; +use Famoser\PdfGenerator\Font\Backend\File\Table\CMap\FormatVisitor; +use Famoser\PdfGenerator\Font\Backend\StreamWriter; abstract class Format { diff --git a/src/Font/Backend/File/Table/CMap/Format/Format4.php b/src/Font/Backend/File/Table/CMap/Format/Format4.php index e7465b81..85bbb903 100644 --- a/src/Font/Backend/File/Table/CMap/Format/Format4.php +++ b/src/Font/Backend/File/Table/CMap/Format/Format4.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table\CMap\Format; +namespace Famoser\PdfGenerator\Font\Backend\File\Table\CMap\Format; -use PdfGenerator\Font\Backend\File\Table\CMap\FormatVisitor; -use PdfGenerator\Font\Backend\File\Traits\BinaryTreeSearchableTrait; -use PdfGenerator\Font\Backend\StreamWriter; +use Famoser\PdfGenerator\Font\Backend\File\Table\CMap\FormatVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Traits\BinaryTreeSearchableTrait; +use Famoser\PdfGenerator\Font\Backend\StreamWriter; /** * two-byte encoding format for continuous code ranges with spaces in between. diff --git a/src/Font/Backend/File/Table/CMap/FormatVisitor.php b/src/Font/Backend/File/Table/CMap/FormatVisitor.php index 89076c03..f205f399 100644 --- a/src/Font/Backend/File/Table/CMap/FormatVisitor.php +++ b/src/Font/Backend/File/Table/CMap/FormatVisitor.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table\CMap; +namespace Famoser\PdfGenerator\Font\Backend\File\Table\CMap; -use PdfGenerator\Font\Backend\StreamWriter; +use Famoser\PdfGenerator\Font\Backend\StreamWriter; class FormatVisitor { diff --git a/src/Font/Backend/File/Table/CMap/Subtable.php b/src/Font/Backend/File/Table/CMap/Subtable.php index 01fb82fd..ad56da04 100644 --- a/src/Font/Backend/File/Table/CMap/Subtable.php +++ b/src/Font/Backend/File/Table/CMap/Subtable.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table\CMap; +namespace Famoser\PdfGenerator\Font\Backend\File\Table\CMap; -use PdfGenerator\Font\Backend\File\Table\CMap\Format\Format; +use Famoser\PdfGenerator\Font\Backend\File\Table\CMap\Format\Format; /** * contains character to glyph mapping; is part of the 'cmap' table. diff --git a/src/Font/Backend/File/Table/CMapTable.php b/src/Font/Backend/File/Table/CMapTable.php index febe9ba3..bba5cb49 100644 --- a/src/Font/Backend/File/Table/CMapTable.php +++ b/src/Font/Backend/File/Table/CMapTable.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\Table\CMap\Subtable; -use PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\CMap\Subtable; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; /** * the character map table maps character codes to glyph indices. diff --git a/src/Font/Backend/File/Table/Glyf/ComponentGlyf.php b/src/Font/Backend/File/Table/Glyf/ComponentGlyf.php index d53420ff..78cc01c2 100644 --- a/src/Font/Backend/File/Table/Glyf/ComponentGlyf.php +++ b/src/Font/Backend/File/Table/Glyf/ComponentGlyf.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table\Glyf; +namespace Famoser\PdfGenerator\Font\Backend\File\Table\Glyf; -use PdfGenerator\Font\Backend\File\Traits\NullableRawContent; +use Famoser\PdfGenerator\Font\Backend\File\Traits\NullableRawContent; class ComponentGlyf { diff --git a/src/Font/Backend/File/Table/GlyfTable.php b/src/Font/Backend/File/Table/GlyfTable.php index c22c2929..747cecc6 100644 --- a/src/Font/Backend/File/Table/GlyfTable.php +++ b/src/Font/Backend/File/Table/GlyfTable.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\Table\Glyf\ComponentGlyf; -use PdfGenerator\Font\Backend\File\TableVisitor; -use PdfGenerator\Font\Backend\File\Traits\BoundingBoxTrait; -use PdfGenerator\Font\Backend\File\Traits\NullableRawContent; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\Glyf\ComponentGlyf; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Traits\BoundingBoxTrait; +use Famoser\PdfGenerator\Font\Backend\File\Traits\NullableRawContent; /** * the glyph table specified the appearance of the glyphs diff --git a/src/Font/Backend/File/Table/HHeaTable.php b/src/Font/Backend/File/Table/HHeaTable.php index c67319b9..7828a44e 100644 --- a/src/Font/Backend/File/Table/HHeaTable.php +++ b/src/Font/Backend/File/Table/HHeaTable.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; /** * the horizontal header table defines how a horizontal font has to be rendered diff --git a/src/Font/Backend/File/Table/HMtx/LongHorMetric.php b/src/Font/Backend/File/Table/HMtx/LongHorMetric.php index 64d42f87..192f0a67 100644 --- a/src/Font/Backend/File/Table/HMtx/LongHorMetric.php +++ b/src/Font/Backend/File/Table/HMtx/LongHorMetric.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table\HMtx; +namespace Famoser\PdfGenerator\Font\Backend\File\Table\HMtx; class LongHorMetric { diff --git a/src/Font/Backend/File/Table/HMtxTable.php b/src/Font/Backend/File/Table/HMtxTable.php index 5b4a4211..3c50a0e3 100644 --- a/src/Font/Backend/File/Table/HMtxTable.php +++ b/src/Font/Backend/File/Table/HMtxTable.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\Table\HMtx\LongHorMetric; -use PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\HMtx\LongHorMetric; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; /** * the horizontal metrics table defines how the horizontal font has to be rendered diff --git a/src/Font/Backend/File/Table/HeadTable.php b/src/Font/Backend/File/Table/HeadTable.php index ee4af567..55477371 100644 --- a/src/Font/Backend/File/Table/HeadTable.php +++ b/src/Font/Backend/File/Table/HeadTable.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\TableVisitor; -use PdfGenerator\Font\Backend\File\Traits\BoundingBoxTrait; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Traits\BoundingBoxTrait; /** * the header table contains meta-data about the font diff --git a/src/Font/Backend/File/Table/LocaTable.php b/src/Font/Backend/File/Table/LocaTable.php index 5a001514..d6dcb5fb 100644 --- a/src/Font/Backend/File/Table/LocaTable.php +++ b/src/Font/Backend/File/Table/LocaTable.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; /** * the index-to-location table stores the location of glyphs in the glyf table diff --git a/src/Font/Backend/File/Table/MaxPTable.php b/src/Font/Backend/File/Table/MaxPTable.php index e45af005..7348c08b 100644 --- a/src/Font/Backend/File/Table/MaxPTable.php +++ b/src/Font/Backend/File/Table/MaxPTable.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; /** * the maximum profile table contains performance metrics of the font. diff --git a/src/Font/Backend/File/Table/Name/NameRecord.php b/src/Font/Backend/File/Table/Name/NameRecord.php index 9c3fae48..38b21f27 100644 --- a/src/Font/Backend/File/Table/Name/NameRecord.php +++ b/src/Font/Backend/File/Table/Name/NameRecord.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table\Name; +namespace Famoser\PdfGenerator\Font\Backend\File\Table\Name; /** * defines the location & type of strings. diff --git a/src/Font/Backend/File/Table/NameTable.php b/src/Font/Backend/File/Table/NameTable.php index 6bde5c37..0ca64f65 100644 --- a/src/Font/Backend/File/Table/NameTable.php +++ b/src/Font/Backend/File/Table/NameTable.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\Table\Name\NameRecord; -use PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\Name\NameRecord; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; /** * the name table associates strings with the font for different languages. diff --git a/src/Font/Backend/File/Table/OS2Table.php b/src/Font/Backend/File/Table/OS2Table.php index ec21029b..cb49f0e2 100644 --- a/src/Font/Backend/File/Table/OS2Table.php +++ b/src/Font/Backend/File/Table/OS2Table.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; /** * the IS/2 table defines spacing & some more details for windows platform diff --git a/src/Font/Backend/File/Table/OffsetTable.php b/src/Font/Backend/File/Table/OffsetTable.php index 6adb9f4a..0dcd7682 100644 --- a/src/Font/Backend/File/Table/OffsetTable.php +++ b/src/Font/Backend/File/Table/OffsetTable.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\TableVisitor; -use PdfGenerator\Font\Backend\File\Traits\BinaryTreeSearchableTrait; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Traits\BinaryTreeSearchableTrait; /** * the offset table (also called sfnt) defines how many tables the font consists of. diff --git a/src/Font/Backend/File/Table/Post/Format/Format.php b/src/Font/Backend/File/Table/Post/Format/Format.php index 6e16ea5c..506e31d3 100644 --- a/src/Font/Backend/File/Table/Post/Format/Format.php +++ b/src/Font/Backend/File/Table/Post/Format/Format.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table\Post\Format; +namespace Famoser\PdfGenerator\Font\Backend\File\Table\Post\Format; -use PdfGenerator\Font\Backend\File\Table\Post\FormatVisitor; -use PdfGenerator\Font\Backend\StreamWriter; +use Famoser\PdfGenerator\Font\Backend\File\Table\Post\FormatVisitor; +use Famoser\PdfGenerator\Font\Backend\StreamWriter; abstract class Format { diff --git a/src/Font/Backend/File/Table/Post/Format/Format2.php b/src/Font/Backend/File/Table/Post/Format/Format2.php index b5623213..e83089a9 100644 --- a/src/Font/Backend/File/Table/Post/Format/Format2.php +++ b/src/Font/Backend/File/Table/Post/Format/Format2.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table\Post\Format; +namespace Famoser\PdfGenerator\Font\Backend\File\Table\Post\Format; -use PdfGenerator\Font\Backend\File\Table\Post\FormatVisitor; -use PdfGenerator\Font\Backend\StreamWriter; +use Famoser\PdfGenerator\Font\Backend\File\Table\Post\FormatVisitor; +use Famoser\PdfGenerator\Font\Backend\StreamWriter; /** * used to specific glyphs within or without the standard macintosh character set diff --git a/src/Font/Backend/File/Table/Post/FormatVisitor.php b/src/Font/Backend/File/Table/Post/FormatVisitor.php index 438c95a5..05269dee 100644 --- a/src/Font/Backend/File/Table/Post/FormatVisitor.php +++ b/src/Font/Backend/File/Table/Post/FormatVisitor.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table\Post; +namespace Famoser\PdfGenerator\Font\Backend\File\Table\Post; -use PdfGenerator\Font\Backend\StreamWriter; +use Famoser\PdfGenerator\Font\Backend\StreamWriter; class FormatVisitor { diff --git a/src/Font/Backend/File/Table/PostTable.php b/src/Font/Backend/File/Table/PostTable.php index 01c9de7f..8afe2edc 100644 --- a/src/Font/Backend/File/Table/PostTable.php +++ b/src/Font/Backend/File/Table/PostTable.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\Table\Post\Format\Format; -use PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\Post\Format\Format; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; /** * the post script table includes information needed by postscript printers. diff --git a/src/Font/Backend/File/Table/RawTable.php b/src/Font/Backend/File/Table/RawTable.php index dbcb0acd..9c76585e 100644 --- a/src/Font/Backend/File/Table/RawTable.php +++ b/src/Font/Backend/File/Table/RawTable.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; /** * fallback table if an unknown table is encountered. diff --git a/src/Font/Backend/File/Table/TableDirectoryEntry.php b/src/Font/Backend/File/Table/TableDirectoryEntry.php index cdc332ab..f40c9cd5 100644 --- a/src/Font/Backend/File/Table/TableDirectoryEntry.php +++ b/src/Font/Backend/File/Table/TableDirectoryEntry.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Table; +namespace Famoser\PdfGenerator\Font\Backend\File\Table; -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; class TableDirectoryEntry extends BaseTable { diff --git a/src/Font/Backend/File/TableDirectory.php b/src/Font/Backend/File/TableDirectory.php index 1d106bc4..6c5832e3 100644 --- a/src/Font/Backend/File/TableDirectory.php +++ b/src/Font/Backend/File/TableDirectory.php @@ -9,19 +9,19 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File; - -use PdfGenerator\Font\Backend\File\Table\CMapTable; -use PdfGenerator\Font\Backend\File\Table\GlyfTable; -use PdfGenerator\Font\Backend\File\Table\HeadTable; -use PdfGenerator\Font\Backend\File\Table\HHeaTable; -use PdfGenerator\Font\Backend\File\Table\HMtxTable; -use PdfGenerator\Font\Backend\File\Table\LocaTable; -use PdfGenerator\Font\Backend\File\Table\MaxPTable; -use PdfGenerator\Font\Backend\File\Table\NameTable; -use PdfGenerator\Font\Backend\File\Table\OS2Table; -use PdfGenerator\Font\Backend\File\Table\PostTable; -use PdfGenerator\Font\Backend\File\Table\RawTable; +namespace Famoser\PdfGenerator\Font\Backend\File; + +use Famoser\PdfGenerator\Font\Backend\File\Table\CMapTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\GlyfTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\HeadTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\HHeaTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\HMtxTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\LocaTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\MaxPTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\NameTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\OS2Table; +use Famoser\PdfGenerator\Font\Backend\File\Table\PostTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\RawTable; class TableDirectory { diff --git a/src/Font/Backend/File/TableVisitor.php b/src/Font/Backend/File/TableVisitor.php index b86c58e5..c36feeb6 100644 --- a/src/Font/Backend/File/TableVisitor.php +++ b/src/Font/Backend/File/TableVisitor.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File; +namespace Famoser\PdfGenerator\Font\Backend\File; -use PdfGenerator\Font\Backend\File\Table\CMap\FormatVisitor; -use PdfGenerator\Font\Backend\StreamWriter; +use Famoser\PdfGenerator\Font\Backend\File\Table\CMap\FormatVisitor; +use Famoser\PdfGenerator\Font\Backend\StreamWriter; class TableVisitor { diff --git a/src/Font/Backend/File/Traits/BinaryTreeSearchableTrait.php b/src/Font/Backend/File/Traits/BinaryTreeSearchableTrait.php index 053e8bb9..97767885 100644 --- a/src/Font/Backend/File/Traits/BinaryTreeSearchableTrait.php +++ b/src/Font/Backend/File/Traits/BinaryTreeSearchableTrait.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Traits; +namespace Famoser\PdfGenerator\Font\Backend\File\Traits; /** * repeatedly, the TTF format contains information how to construct a binary tree over some value range in question diff --git a/src/Font/Backend/File/Traits/BoundingBoxTrait.php b/src/Font/Backend/File/Traits/BoundingBoxTrait.php index 832f169e..3dcbe192 100644 --- a/src/Font/Backend/File/Traits/BoundingBoxTrait.php +++ b/src/Font/Backend/File/Traits/BoundingBoxTrait.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Traits; +namespace Famoser\PdfGenerator\Font\Backend\File\Traits; trait BoundingBoxTrait { diff --git a/src/Font/Backend/File/Traits/NullableRawContent.php b/src/Font/Backend/File/Traits/NullableRawContent.php index d2435f89..7a630aa3 100644 --- a/src/Font/Backend/File/Traits/NullableRawContent.php +++ b/src/Font/Backend/File/Traits/NullableRawContent.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Traits; +namespace Famoser\PdfGenerator\Font\Backend\File\Traits; trait NullableRawContent { diff --git a/src/Font/Backend/File/Traits/RawContent.php b/src/Font/Backend/File/Traits/RawContent.php index 4b9aa53e..b7f4e079 100644 --- a/src/Font/Backend/File/Traits/RawContent.php +++ b/src/Font/Backend/File/Traits/RawContent.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend\File\Traits; +namespace Famoser\PdfGenerator\Font\Backend\File\Traits; trait RawContent { diff --git a/src/Font/Backend/FileWriter.php b/src/Font/Backend/FileWriter.php index ab5591ad..8d64cc24 100644 --- a/src/Font/Backend/FileWriter.php +++ b/src/Font/Backend/FileWriter.php @@ -9,34 +9,34 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend; - -use PdfGenerator\Font\Backend\File\Table\Base\BaseTable; -use PdfGenerator\Font\Backend\File\Table\CMap\Format\Format4; -use PdfGenerator\Font\Backend\File\Table\CMap\Subtable; -use PdfGenerator\Font\Backend\File\Table\CMapTable; -use PdfGenerator\Font\Backend\File\Table\Glyf\ComponentGlyf; -use PdfGenerator\Font\Backend\File\Table\GlyfTable; -use PdfGenerator\Font\Backend\File\Table\HeadTable; -use PdfGenerator\Font\Backend\File\Table\HHeaTable; -use PdfGenerator\Font\Backend\File\Table\HMtx\LongHorMetric; -use PdfGenerator\Font\Backend\File\Table\HMtxTable; -use PdfGenerator\Font\Backend\File\Table\LocaTable; -use PdfGenerator\Font\Backend\File\Table\MaxPTable; -use PdfGenerator\Font\Backend\File\Table\Name\NameRecord; -use PdfGenerator\Font\Backend\File\Table\NameTable; -use PdfGenerator\Font\Backend\File\Table\OffsetTable; -use PdfGenerator\Font\Backend\File\Table\OS2Table; -use PdfGenerator\Font\Backend\File\Table\Post\Format\Format2; -use PdfGenerator\Font\Backend\File\Table\PostTable; -use PdfGenerator\Font\Backend\File\Table\RawTable; -use PdfGenerator\Font\Backend\File\Table\TableDirectoryEntry; -use PdfGenerator\Font\Backend\File\TableDirectory; -use PdfGenerator\Font\Backend\File\TableVisitor; -use PdfGenerator\Font\Frontend\StreamReader; -use PdfGenerator\Font\IR\Structure\Character; -use PdfGenerator\Font\IR\Structure\Font; -use PdfGenerator\Font\IR\Utils\CMap\Format4\Segment; +namespace Famoser\PdfGenerator\Font\Backend; + +use Famoser\PdfGenerator\Font\Backend\File\Table\Base\BaseTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\CMap\Format\Format4; +use Famoser\PdfGenerator\Font\Backend\File\Table\CMap\Subtable; +use Famoser\PdfGenerator\Font\Backend\File\Table\CMapTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\Glyf\ComponentGlyf; +use Famoser\PdfGenerator\Font\Backend\File\Table\GlyfTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\HeadTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\HHeaTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\HMtx\LongHorMetric; +use Famoser\PdfGenerator\Font\Backend\File\Table\HMtxTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\LocaTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\MaxPTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\Name\NameRecord; +use Famoser\PdfGenerator\Font\Backend\File\Table\NameTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\OffsetTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\OS2Table; +use Famoser\PdfGenerator\Font\Backend\File\Table\Post\Format\Format2; +use Famoser\PdfGenerator\Font\Backend\File\Table\PostTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\RawTable; +use Famoser\PdfGenerator\Font\Backend\File\Table\TableDirectoryEntry; +use Famoser\PdfGenerator\Font\Backend\File\TableDirectory; +use Famoser\PdfGenerator\Font\Backend\File\TableVisitor; +use Famoser\PdfGenerator\Font\Frontend\StreamReader; +use Famoser\PdfGenerator\Font\IR\Structure\Character; +use Famoser\PdfGenerator\Font\IR\Structure\Font; +use Famoser\PdfGenerator\Font\IR\Utils\CMap\Format4\Segment; readonly class FileWriter { diff --git a/src/Font/Backend/StreamWriter.php b/src/Font/Backend/StreamWriter.php index 143932a5..536653ea 100644 --- a/src/Font/Backend/StreamWriter.php +++ b/src/Font/Backend/StreamWriter.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Backend; +namespace Famoser\PdfGenerator\Font\Backend; class StreamWriter { diff --git a/src/Font/Frontend/File/FontFile.php b/src/Font/Frontend/File/FontFile.php index 1309ae4b..d14c9182 100644 --- a/src/Font/Frontend/File/FontFile.php +++ b/src/Font/Frontend/File/FontFile.php @@ -9,19 +9,19 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File; - -use PdfGenerator\Font\Frontend\File\Table\CMapTable; -use PdfGenerator\Font\Frontend\File\Table\GlyfTable; -use PdfGenerator\Font\Frontend\File\Table\HeadTable; -use PdfGenerator\Font\Frontend\File\Table\HHeaTable; -use PdfGenerator\Font\Frontend\File\Table\HMtxTable; -use PdfGenerator\Font\Frontend\File\Table\LocaTable; -use PdfGenerator\Font\Frontend\File\Table\MaxPTable; -use PdfGenerator\Font\Frontend\File\Table\NameTable; -use PdfGenerator\Font\Frontend\File\Table\OS2Table; -use PdfGenerator\Font\Frontend\File\Table\PostTable; -use PdfGenerator\Font\Frontend\File\Table\RawTable; +namespace Famoser\PdfGenerator\Font\Frontend\File; + +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMapTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\GlyfTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HeadTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HHeaTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HMtxTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\LocaTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\MaxPTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\NameTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\OS2Table; +use Famoser\PdfGenerator\Font\Frontend\File\Table\PostTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\RawTable; class FontFile { diff --git a/src/Font/Frontend/File/Table/CMap/Format/Format.php b/src/Font/Frontend/File/Table/CMap/Format/Format.php index 11fe98cf..cee8096a 100644 --- a/src/Font/Frontend/File/Table/CMap/Format/Format.php +++ b/src/Font/Frontend/File/Table/CMap/Format/Format.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\CMap\Format; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format; -use PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; abstract class Format { diff --git a/src/Font/Frontend/File/Table/CMap/Format/Format0.php b/src/Font/Frontend/File/Table/CMap/Format/Format0.php index 1a1d9142..700e82be 100644 --- a/src/Font/Frontend/File/Table/CMap/Format/Format0.php +++ b/src/Font/Frontend/File/Table/CMap/Format/Format0.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\CMap\Format; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format; -use PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; /** * two-byte encoding format for continuous code ranges with spaces in between. diff --git a/src/Font/Frontend/File/Table/CMap/Format/Format12.php b/src/Font/Frontend/File/Table/CMap/Format/Format12.php index 6af5ed61..3d38af88 100644 --- a/src/Font/Frontend/File/Table/CMap/Format/Format12.php +++ b/src/Font/Frontend/File/Table/CMap/Format/Format12.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\CMap\Format; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format; -use PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; class Format12 extends Format { diff --git a/src/Font/Frontend/File/Table/CMap/Format/Format12Group.php b/src/Font/Frontend/File/Table/CMap/Format/Format12Group.php index c986f8ee..595c9418 100644 --- a/src/Font/Frontend/File/Table/CMap/Format/Format12Group.php +++ b/src/Font/Frontend/File/Table/CMap/Format/Format12Group.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\CMap\Format; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format; class Format12Group { diff --git a/src/Font/Frontend/File/Table/CMap/Format/Format4.php b/src/Font/Frontend/File/Table/CMap/Format/Format4.php index 6d59626b..59a0bfef 100644 --- a/src/Font/Frontend/File/Table/CMap/Format/Format4.php +++ b/src/Font/Frontend/File/Table/CMap/Format/Format4.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\CMap\Format; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format; -use PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; -use PdfGenerator\Font\Frontend\File\Traits\BinaryTreeSearchableTrait; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\Frontend\File\Traits\BinaryTreeSearchableTrait; /** * two-byte encoding format for continuous code ranges with spaces in between. diff --git a/src/Font/Frontend/File/Table/CMap/Format/Format6.php b/src/Font/Frontend/File/Table/CMap/Format/Format6.php index d2da5287..78b084c7 100644 --- a/src/Font/Frontend/File/Table/CMap/Format/Format6.php +++ b/src/Font/Frontend/File/Table/CMap/Format/Format6.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\CMap\Format; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format; -use PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; /** * two-byte encoding format for a single dense character range. diff --git a/src/Font/Frontend/File/Table/CMap/FormatReader.php b/src/Font/Frontend/File/Table/CMap/FormatReader.php index d08a9aee..0ca276bd 100644 --- a/src/Font/Frontend/File/Table/CMap/FormatReader.php +++ b/src/Font/Frontend/File/Table/CMap/FormatReader.php @@ -9,15 +9,15 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\CMap; - -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format0; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format12; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format12Group; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format4; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format6; -use PdfGenerator\Font\Frontend\StreamReader; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\CMap; + +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format0; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format12; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format12Group; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format4; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format6; +use Famoser\PdfGenerator\Font\Frontend\StreamReader; class FormatReader { diff --git a/src/Font/Frontend/File/Table/CMap/FormatVisitorInterface.php b/src/Font/Frontend/File/Table/CMap/FormatVisitorInterface.php index aa76db01..73e5f00a 100644 --- a/src/Font/Frontend/File/Table/CMap/FormatVisitorInterface.php +++ b/src/Font/Frontend/File/Table/CMap/FormatVisitorInterface.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\CMap; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\CMap; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format0; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format12; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format4; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format6; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format0; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format12; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format4; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format6; /** * @template T diff --git a/src/Font/Frontend/File/Table/CMap/Subtable.php b/src/Font/Frontend/File/Table/CMap/Subtable.php index f4e5f20f..2bdf8d49 100644 --- a/src/Font/Frontend/File/Table/CMap/Subtable.php +++ b/src/Font/Frontend/File/Table/CMap/Subtable.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\CMap; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\CMap; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format; /** * contains character to glyph mapping; is part of the 'cmap' table. diff --git a/src/Font/Frontend/File/Table/CMapTable.php b/src/Font/Frontend/File/Table/CMapTable.php index 2344dbe4..109b642e 100644 --- a/src/Font/Frontend/File/Table/CMapTable.php +++ b/src/Font/Frontend/File/Table/CMapTable.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; -use PdfGenerator\Font\Frontend\File\Table\CMap\Subtable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Subtable; /** * the character map table maps character codes to glyph indices. diff --git a/src/Font/Frontend/File/Table/Glyf/ComponentGlyf.php b/src/Font/Frontend/File/Table/Glyf/ComponentGlyf.php index 91531577..ab003f8d 100644 --- a/src/Font/Frontend/File/Table/Glyf/ComponentGlyf.php +++ b/src/Font/Frontend/File/Table/Glyf/ComponentGlyf.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\Glyf; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\Glyf; -use PdfGenerator\Font\Frontend\File\Traits\NullableRawContent; +use Famoser\PdfGenerator\Font\Frontend\File\Traits\NullableRawContent; class ComponentGlyf { diff --git a/src/Font/Frontend/File/Table/GlyfTable.php b/src/Font/Frontend/File/Table/GlyfTable.php index 17b44215..82f5f652 100644 --- a/src/Font/Frontend/File/Table/GlyfTable.php +++ b/src/Font/Frontend/File/Table/GlyfTable.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; -use PdfGenerator\Font\Frontend\File\Table\Glyf\ComponentGlyf; -use PdfGenerator\Font\Frontend\File\Traits\BoundingBoxTrait; -use PdfGenerator\Font\Frontend\File\Traits\NullableRawContent; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Glyf\ComponentGlyf; +use Famoser\PdfGenerator\Font\Frontend\File\Traits\BoundingBoxTrait; +use Famoser\PdfGenerator\Font\Frontend\File\Traits\NullableRawContent; /** * the glyph table specified the appearance of the glyphs diff --git a/src/Font/Frontend/File/Table/HHeaTable.php b/src/Font/Frontend/File/Table/HHeaTable.php index ac5cec30..6c863a5e 100644 --- a/src/Font/Frontend/File/Table/HHeaTable.php +++ b/src/Font/Frontend/File/Table/HHeaTable.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; /** * the horizontal header table defines how a horizontal font has to be rendered diff --git a/src/Font/Frontend/File/Table/HMtx/LongHorMetric.php b/src/Font/Frontend/File/Table/HMtx/LongHorMetric.php index 01fcfbf1..6f0a470d 100644 --- a/src/Font/Frontend/File/Table/HMtx/LongHorMetric.php +++ b/src/Font/Frontend/File/Table/HMtx/LongHorMetric.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\HMtx; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\HMtx; class LongHorMetric { diff --git a/src/Font/Frontend/File/Table/HMtxTable.php b/src/Font/Frontend/File/Table/HMtxTable.php index c20b9da9..402e47bc 100644 --- a/src/Font/Frontend/File/Table/HMtxTable.php +++ b/src/Font/Frontend/File/Table/HMtxTable.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; -use PdfGenerator\Font\Frontend\File\Table\HMtx\LongHorMetric; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HMtx\LongHorMetric; /** * the horizontal metrics table defines how the horizontal font has to be rendered diff --git a/src/Font/Frontend/File/Table/HeadTable.php b/src/Font/Frontend/File/Table/HeadTable.php index b737dc5f..4aceb552 100644 --- a/src/Font/Frontend/File/Table/HeadTable.php +++ b/src/Font/Frontend/File/Table/HeadTable.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; -use PdfGenerator\Font\Frontend\File\Traits\BoundingBoxTrait; +use Famoser\PdfGenerator\Font\Frontend\File\Traits\BoundingBoxTrait; /** * the header table contains meta-data about the font diff --git a/src/Font/Frontend/File/Table/LocaTable.php b/src/Font/Frontend/File/Table/LocaTable.php index 2a541dbd..adf126c8 100644 --- a/src/Font/Frontend/File/Table/LocaTable.php +++ b/src/Font/Frontend/File/Table/LocaTable.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; /** * the index-to-location table stores the location of glyphs in the glyf table diff --git a/src/Font/Frontend/File/Table/MaxPTable.php b/src/Font/Frontend/File/Table/MaxPTable.php index 067ffabf..e8a64268 100644 --- a/src/Font/Frontend/File/Table/MaxPTable.php +++ b/src/Font/Frontend/File/Table/MaxPTable.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; /** * the maximum profile table contains performance metrics of the font. diff --git a/src/Font/Frontend/File/Table/Name/LangTagRecord.php b/src/Font/Frontend/File/Table/Name/LangTagRecord.php index cfb3f95e..d90dd726 100644 --- a/src/Font/Frontend/File/Table/Name/LangTagRecord.php +++ b/src/Font/Frontend/File/Table/Name/LangTagRecord.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\Name; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\Name; /** * a language tag conforming to IETF BCP 47 https://tools.ietf.org/html/bcp47 diff --git a/src/Font/Frontend/File/Table/Name/NameRecord.php b/src/Font/Frontend/File/Table/Name/NameRecord.php index 7c20d269..03b3762c 100644 --- a/src/Font/Frontend/File/Table/Name/NameRecord.php +++ b/src/Font/Frontend/File/Table/Name/NameRecord.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\Name; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\Name; /** * defines the location & type of strings. diff --git a/src/Font/Frontend/File/Table/NameTable.php b/src/Font/Frontend/File/Table/NameTable.php index 94c47d68..8913ce38 100644 --- a/src/Font/Frontend/File/Table/NameTable.php +++ b/src/Font/Frontend/File/Table/NameTable.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; -use PdfGenerator\Font\Frontend\File\Table\Name\LangTagRecord; -use PdfGenerator\Font\Frontend\File\Table\Name\NameRecord; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Name\LangTagRecord; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Name\NameRecord; /** * the name table associates strings with the font for different languages. diff --git a/src/Font/Frontend/File/Table/OS2Table.php b/src/Font/Frontend/File/Table/OS2Table.php index 9ea4bdbb..a40a3a61 100644 --- a/src/Font/Frontend/File/Table/OS2Table.php +++ b/src/Font/Frontend/File/Table/OS2Table.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; /** * the IS/2 table defines spacing & some more details for windows platform diff --git a/src/Font/Frontend/File/Table/OffsetTable.php b/src/Font/Frontend/File/Table/OffsetTable.php index 37f8b03f..14040181 100644 --- a/src/Font/Frontend/File/Table/OffsetTable.php +++ b/src/Font/Frontend/File/Table/OffsetTable.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; -use PdfGenerator\Font\Frontend\File\Traits\BinaryTreeSearchableTrait; +use Famoser\PdfGenerator\Font\Frontend\File\Traits\BinaryTreeSearchableTrait; /** * the offset table (also called sfnt) defines how many tables the font consists of. diff --git a/src/Font/Frontend/File/Table/Post/Format/Format.php b/src/Font/Frontend/File/Table/Post/Format/Format.php index 6b4c0c5e..99700714 100644 --- a/src/Font/Frontend/File/Table/Post/Format/Format.php +++ b/src/Font/Frontend/File/Table/Post/Format/Format.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\Post\Format; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format; -use PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; abstract class Format { diff --git a/src/Font/Frontend/File/Table/Post/Format/Format1.php b/src/Font/Frontend/File/Table/Post/Format/Format1.php index 788566e0..ec7d5a1f 100644 --- a/src/Font/Frontend/File/Table/Post/Format/Format1.php +++ b/src/Font/Frontend/File/Table/Post/Format/Format1.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\Post\Format; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format; -use PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; /** * this format uses the standard macintosh ordering; hence all indexes are predefined. diff --git a/src/Font/Frontend/File/Table/Post/Format/Format2.php b/src/Font/Frontend/File/Table/Post/Format/Format2.php index 52886893..ea7873ac 100644 --- a/src/Font/Frontend/File/Table/Post/Format/Format2.php +++ b/src/Font/Frontend/File/Table/Post/Format/Format2.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\Post\Format; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format; -use PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; /** * used to specific glyphs within or without the standard macintosh character set diff --git a/src/Font/Frontend/File/Table/Post/Format/Format25.php b/src/Font/Frontend/File/Table/Post/Format/Format25.php index 701d2197..7607b43e 100644 --- a/src/Font/Frontend/File/Table/Post/Format/Format25.php +++ b/src/Font/Frontend/File/Table/Post/Format/Format25.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\Post\Format; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format; -use PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; /** * specifies offsets to the standard macintosh ordering. diff --git a/src/Font/Frontend/File/Table/Post/Format/Format3.php b/src/Font/Frontend/File/Table/Post/Format/Format3.php index 977b81e7..50416be9 100644 --- a/src/Font/Frontend/File/Table/Post/Format/Format3.php +++ b/src/Font/Frontend/File/Table/Post/Format/Format3.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\Post\Format; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format; -use PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; /** * specifies that no PostScript information will be supplied diff --git a/src/Font/Frontend/File/Table/Post/FormatReader.php b/src/Font/Frontend/File/Table/Post/FormatReader.php index 312125a6..9d0f059a 100644 --- a/src/Font/Frontend/File/Table/Post/FormatReader.php +++ b/src/Font/Frontend/File/Table/Post/FormatReader.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\Post; - -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format1; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format2; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format25; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format3; -use PdfGenerator\Font\Frontend\StreamReader; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\Post; + +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format1; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format2; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format25; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format3; +use Famoser\PdfGenerator\Font\Frontend\StreamReader; class FormatReader { diff --git a/src/Font/Frontend/File/Table/Post/FormatVisitorInterface.php b/src/Font/Frontend/File/Table/Post/FormatVisitorInterface.php index ae49d2d3..eb20ff4b 100644 --- a/src/Font/Frontend/File/Table/Post/FormatVisitorInterface.php +++ b/src/Font/Frontend/File/Table/Post/FormatVisitorInterface.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table\Post; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table\Post; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format1; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format2; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format25; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format3; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format1; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format2; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format25; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format3; /** * @template T diff --git a/src/Font/Frontend/File/Table/PostTable.php b/src/Font/Frontend/File/Table/PostTable.php index bb85ace8..a80ca752 100644 --- a/src/Font/Frontend/File/Table/PostTable.php +++ b/src/Font/Frontend/File/Table/PostTable.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format; /** * the post script table includes information needed by postscript printers. diff --git a/src/Font/Frontend/File/Table/RawTable.php b/src/Font/Frontend/File/Table/RawTable.php index 3db9c411..d5c1afe4 100644 --- a/src/Font/Frontend/File/Table/RawTable.php +++ b/src/Font/Frontend/File/Table/RawTable.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; /** * fallback table if an unknown table is encountered or one that is not serialized. diff --git a/src/Font/Frontend/File/Table/TableDirectoryEntry.php b/src/Font/Frontend/File/Table/TableDirectoryEntry.php index 3bafd7e0..018c7c62 100644 --- a/src/Font/Frontend/File/Table/TableDirectoryEntry.php +++ b/src/Font/Frontend/File/Table/TableDirectoryEntry.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Table; +namespace Famoser\PdfGenerator\Font\Frontend\File\Table; class TableDirectoryEntry { diff --git a/src/Font/Frontend/File/Traits/BinaryTreeSearchableTrait.php b/src/Font/Frontend/File/Traits/BinaryTreeSearchableTrait.php index c1edbea8..cbe42f5e 100644 --- a/src/Font/Frontend/File/Traits/BinaryTreeSearchableTrait.php +++ b/src/Font/Frontend/File/Traits/BinaryTreeSearchableTrait.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Traits; +namespace Famoser\PdfGenerator\Font\Frontend\File\Traits; /** * repeatedly, the TTF format contains information how to construct a binary tree over some value range in question diff --git a/src/Font/Frontend/File/Traits/BoundingBoxTrait.php b/src/Font/Frontend/File/Traits/BoundingBoxTrait.php index d54ef840..f949e675 100644 --- a/src/Font/Frontend/File/Traits/BoundingBoxTrait.php +++ b/src/Font/Frontend/File/Traits/BoundingBoxTrait.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Traits; +namespace Famoser\PdfGenerator\Font\Frontend\File\Traits; trait BoundingBoxTrait { diff --git a/src/Font/Frontend/File/Traits/NullableRawContent.php b/src/Font/Frontend/File/Traits/NullableRawContent.php index 54370837..d262387c 100644 --- a/src/Font/Frontend/File/Traits/NullableRawContent.php +++ b/src/Font/Frontend/File/Traits/NullableRawContent.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Traits; +namespace Famoser\PdfGenerator\Font\Frontend\File\Traits; trait NullableRawContent { diff --git a/src/Font/Frontend/File/Traits/RawContent.php b/src/Font/Frontend/File/Traits/RawContent.php index 9f5b5e2e..269fb810 100644 --- a/src/Font/Frontend/File/Traits/RawContent.php +++ b/src/Font/Frontend/File/Traits/RawContent.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend\File\Traits; +namespace Famoser\PdfGenerator\Font\Frontend\File\Traits; trait RawContent { diff --git a/src/Font/Frontend/FileReader.php b/src/Font/Frontend/FileReader.php index b841508b..04405a4d 100644 --- a/src/Font/Frontend/FileReader.php +++ b/src/Font/Frontend/FileReader.php @@ -9,28 +9,28 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend; - -use PdfGenerator\Font\Frontend\File\FontFile; -use PdfGenerator\Font\Frontend\File\Table\CMap\FormatReader; -use PdfGenerator\Font\Frontend\File\Table\CMap\Subtable; -use PdfGenerator\Font\Frontend\File\Table\CMapTable; -use PdfGenerator\Font\Frontend\File\Table\Glyf\ComponentGlyf; -use PdfGenerator\Font\Frontend\File\Table\GlyfTable; -use PdfGenerator\Font\Frontend\File\Table\HeadTable; -use PdfGenerator\Font\Frontend\File\Table\HHeaTable; -use PdfGenerator\Font\Frontend\File\Table\HMtx\LongHorMetric; -use PdfGenerator\Font\Frontend\File\Table\HMtxTable; -use PdfGenerator\Font\Frontend\File\Table\LocaTable; -use PdfGenerator\Font\Frontend\File\Table\MaxPTable; -use PdfGenerator\Font\Frontend\File\Table\Name\LangTagRecord; -use PdfGenerator\Font\Frontend\File\Table\Name\NameRecord; -use PdfGenerator\Font\Frontend\File\Table\NameTable; -use PdfGenerator\Font\Frontend\File\Table\OffsetTable; -use PdfGenerator\Font\Frontend\File\Table\OS2Table; -use PdfGenerator\Font\Frontend\File\Table\PostTable; -use PdfGenerator\Font\Frontend\File\Table\RawTable; -use PdfGenerator\Font\Frontend\File\Table\TableDirectoryEntry; +namespace Famoser\PdfGenerator\Font\Frontend; + +use Famoser\PdfGenerator\Font\Frontend\File\FontFile; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\FormatReader; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Subtable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMapTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Glyf\ComponentGlyf; +use Famoser\PdfGenerator\Font\Frontend\File\Table\GlyfTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HeadTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HHeaTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HMtx\LongHorMetric; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HMtxTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\LocaTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\MaxPTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Name\LangTagRecord; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Name\NameRecord; +use Famoser\PdfGenerator\Font\Frontend\File\Table\NameTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\OffsetTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\OS2Table; +use Famoser\PdfGenerator\Font\Frontend\File\Table\PostTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\RawTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\TableDirectoryEntry; class FileReader { diff --git a/src/Font/Frontend/StreamReader.php b/src/Font/Frontend/StreamReader.php index ab1b9eb8..9c245984 100644 --- a/src/Font/Frontend/StreamReader.php +++ b/src/Font/Frontend/StreamReader.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Frontend; +namespace Famoser\PdfGenerator\Font\Frontend; /** * can read supported pdf value types. diff --git a/src/Font/IR/CharacterRepository.php b/src/Font/IR/CharacterRepository.php index f9d8ec65..5acacbac 100644 --- a/src/Font/IR/CharacterRepository.php +++ b/src/Font/IR/CharacterRepository.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR; +namespace Famoser\PdfGenerator\Font\IR; -use PdfGenerator\Font\IR\Structure\Character; -use PdfGenerator\Font\IR\Structure\Font; +use Famoser\PdfGenerator\Font\IR\Structure\Character; +use Famoser\PdfGenerator\Font\IR\Structure\Font; class CharacterRepository { diff --git a/src/Font/IR/CharacterSizer.php b/src/Font/IR/CharacterSizer.php index 98188447..94a56992 100644 --- a/src/Font/IR/CharacterSizer.php +++ b/src/Font/IR/CharacterSizer.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR; +namespace Famoser\PdfGenerator\Font\IR; -use PdfGenerator\Font\IR\Structure\Font; +use Famoser\PdfGenerator\Font\IR\Structure\Font; class CharacterSizer { diff --git a/src/Font/IR/Optimizer.php b/src/Font/IR/Optimizer.php index b5875f47..d7947461 100644 --- a/src/Font/IR/Optimizer.php +++ b/src/Font/IR/Optimizer.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR; +namespace Famoser\PdfGenerator\Font\IR; -use PdfGenerator\Font\IR\Structure\Character; -use PdfGenerator\Font\IR\Structure\Font; -use PdfGenerator\Font\IR\Structure\TableDirectory; +use Famoser\PdfGenerator\Font\IR\Structure\Character; +use Famoser\PdfGenerator\Font\IR\Structure\Font; +use Famoser\PdfGenerator\Font\IR\Structure\TableDirectory; class Optimizer { diff --git a/src/Font/IR/Parser.php b/src/Font/IR/Parser.php index 1885d2de..5ef589bf 100644 --- a/src/Font/IR/Parser.php +++ b/src/Font/IR/Parser.php @@ -9,24 +9,24 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR; - -use PdfGenerator\Font\Frontend\File\FontFile; -use PdfGenerator\Font\Frontend\File\Table\CMap\FormatReader; -use PdfGenerator\Font\Frontend\File\Table\CMap\Subtable; -use PdfGenerator\Font\Frontend\File\Table\CMapTable; -use PdfGenerator\Font\Frontend\File\Table\HMtx\LongHorMetric; -use PdfGenerator\Font\Frontend\File\Table\HMtxTable; -use PdfGenerator\Font\Frontend\FileReader; -use PdfGenerator\Font\Frontend\StreamReader; -use PdfGenerator\Font\IR\Structure\BoundingBox; -use PdfGenerator\Font\IR\Structure\Character; -use PdfGenerator\Font\IR\Structure\Font; -use PdfGenerator\Font\IR\Structure\PostScriptInfo; -use PdfGenerator\Font\IR\Structure\TableDirectory; -use PdfGenerator\Font\IR\Structure\Tables\FontInformation; -use PdfGenerator\Font\IR\Utils\CMap\GlyphIndexFormatVisitor; -use PdfGenerator\Font\Resources\GlyphNameMapping\Factory; +namespace Famoser\PdfGenerator\Font\IR; + +use Famoser\PdfGenerator\Font\Frontend\File\FontFile; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\FormatReader; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Subtable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMapTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HMtx\LongHorMetric; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HMtxTable; +use Famoser\PdfGenerator\Font\Frontend\FileReader; +use Famoser\PdfGenerator\Font\Frontend\StreamReader; +use Famoser\PdfGenerator\Font\IR\Structure\BoundingBox; +use Famoser\PdfGenerator\Font\IR\Structure\Character; +use Famoser\PdfGenerator\Font\IR\Structure\Font; +use Famoser\PdfGenerator\Font\IR\Structure\PostScriptInfo; +use Famoser\PdfGenerator\Font\IR\Structure\TableDirectory; +use Famoser\PdfGenerator\Font\IR\Structure\Tables\FontInformation; +use Famoser\PdfGenerator\Font\IR\Utils\CMap\GlyphIndexFormatVisitor; +use Famoser\PdfGenerator\Font\Resources\GlyphNameMapping\Factory; readonly class Parser { diff --git a/src/Font/IR/Structure/BoundingBox.php b/src/Font/IR/Structure/BoundingBox.php index 63027db0..8e7ae1ff 100644 --- a/src/Font/IR/Structure/BoundingBox.php +++ b/src/Font/IR/Structure/BoundingBox.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Structure; +namespace Famoser\PdfGenerator\Font\IR\Structure; class BoundingBox { diff --git a/src/Font/IR/Structure/Character.php b/src/Font/IR/Structure/Character.php index 380f0370..4edd6ac5 100644 --- a/src/Font/IR/Structure/Character.php +++ b/src/Font/IR/Structure/Character.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Structure; +namespace Famoser\PdfGenerator\Font\IR\Structure; -use PdfGenerator\Font\Frontend\File\Table\GlyfTable; -use PdfGenerator\Font\Frontend\File\Table\HMtx\LongHorMetric; +use Famoser\PdfGenerator\Font\Frontend\File\Table\GlyfTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HMtx\LongHorMetric; class Character { diff --git a/src/Font/IR/Structure/Font.php b/src/Font/IR/Structure/Font.php index 1128158d..d275e9f2 100644 --- a/src/Font/IR/Structure/Font.php +++ b/src/Font/IR/Structure/Font.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Structure; +namespace Famoser\PdfGenerator\Font\IR\Structure; -use PdfGenerator\Font\IR\Structure\Tables\FontInformation; +use Famoser\PdfGenerator\Font\IR\Structure\Tables\FontInformation; class Font { diff --git a/src/Font/IR/Structure/NameCollection.php b/src/Font/IR/Structure/NameCollection.php index 9f9513c0..3128af7d 100644 --- a/src/Font/IR/Structure/NameCollection.php +++ b/src/Font/IR/Structure/NameCollection.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Structure; +namespace Famoser\PdfGenerator\Font\IR\Structure; class NameCollection { diff --git a/src/Font/IR/Structure/PostScriptInfo.php b/src/Font/IR/Structure/PostScriptInfo.php index dace581b..45865167 100644 --- a/src/Font/IR/Structure/PostScriptInfo.php +++ b/src/Font/IR/Structure/PostScriptInfo.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Structure; +namespace Famoser\PdfGenerator\Font\IR\Structure; class PostScriptInfo { diff --git a/src/Font/IR/Structure/TableDirectory.php b/src/Font/IR/Structure/TableDirectory.php index 9af76670..64006ddb 100644 --- a/src/Font/IR/Structure/TableDirectory.php +++ b/src/Font/IR/Structure/TableDirectory.php @@ -9,15 +9,15 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Structure; - -use PdfGenerator\Font\Frontend\File\Table\HeadTable; -use PdfGenerator\Font\Frontend\File\Table\HHeaTable; -use PdfGenerator\Font\Frontend\File\Table\MaxPTable; -use PdfGenerator\Font\Frontend\File\Table\NameTable; -use PdfGenerator\Font\Frontend\File\Table\OS2Table; -use PdfGenerator\Font\Frontend\File\Table\PostTable; -use PdfGenerator\Font\Frontend\File\Table\RawTable; +namespace Famoser\PdfGenerator\Font\IR\Structure; + +use Famoser\PdfGenerator\Font\Frontend\File\Table\HeadTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HHeaTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\MaxPTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\NameTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\OS2Table; +use Famoser\PdfGenerator\Font\Frontend\File\Table\PostTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\RawTable; class TableDirectory { diff --git a/src/Font/IR/Structure/Tables/FontInformation.php b/src/Font/IR/Structure/Tables/FontInformation.php index 2a2ff0ee..61d50c19 100644 --- a/src/Font/IR/Structure/Tables/FontInformation.php +++ b/src/Font/IR/Structure/Tables/FontInformation.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Structure\Tables; +namespace Famoser\PdfGenerator\Font\IR\Structure\Tables; class FontInformation { diff --git a/src/Font/IR/Utils/CMap/Format4/Segment.php b/src/Font/IR/Utils/CMap/Format4/Segment.php index 060d4b53..0614c4fa 100644 --- a/src/Font/IR/Utils/CMap/Format4/Segment.php +++ b/src/Font/IR/Utils/CMap/Format4/Segment.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Utils\CMap\Format4; +namespace Famoser\PdfGenerator\Font\IR\Utils\CMap\Format4; class Segment { diff --git a/src/Font/IR/Utils/CMap/Format4/Transformer.php b/src/Font/IR/Utils/CMap/Format4/Transformer.php index dcce0e37..b2a8043b 100644 --- a/src/Font/IR/Utils/CMap/Format4/Transformer.php +++ b/src/Font/IR/Utils/CMap/Format4/Transformer.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Utils\CMap\Format4; +namespace Famoser\PdfGenerator\Font\IR\Utils\CMap\Format4; class Transformer { diff --git a/src/Font/IR/Utils/CMap/GlyphIndexFormatVisitor.php b/src/Font/IR/Utils/CMap/GlyphIndexFormatVisitor.php index 7b04e9a6..db609a2f 100644 --- a/src/Font/IR/Utils/CMap/GlyphIndexFormatVisitor.php +++ b/src/Font/IR/Utils/CMap/GlyphIndexFormatVisitor.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Utils\CMap; +namespace Famoser\PdfGenerator\Font\IR\Utils\CMap; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format0; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format12; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format4; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format6; -use PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; -use PdfGenerator\Font\IR\Utils\CMap\Format4\Transformer; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format0; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format12; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format4; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format6; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\IR\Utils\CMap\Format4\Transformer; /** * @implements FormatVisitorInterface> diff --git a/src/Font/IR/Utils/Post/GlyphIndexFormatVisitor.php b/src/Font/IR/Utils/Post/GlyphIndexFormatVisitor.php index c557b964..30203ff3 100644 --- a/src/Font/IR/Utils/Post/GlyphIndexFormatVisitor.php +++ b/src/Font/IR/Utils/Post/GlyphIndexFormatVisitor.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Utils\Post; - -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format1; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format2; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format25; -use PdfGenerator\Font\Frontend\File\Table\Post\Format\Format3; -use PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; -use PdfGenerator\Font\Resources\GlyphNameMapping\Factory; +namespace Famoser\PdfGenerator\Font\IR\Utils\Post; + +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format1; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format2; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format25; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\Format\Format3; +use Famoser\PdfGenerator\Font\Frontend\File\Table\Post\FormatVisitorInterface; +use Famoser\PdfGenerator\Font\Resources\GlyphNameMapping\Factory; /** * @implements FormatVisitorInterface diff --git a/src/Font/IR/Utils/Post/GlyphInfo.php b/src/Font/IR/Utils/Post/GlyphInfo.php index b9ce6d68..2ebaf470 100644 --- a/src/Font/IR/Utils/Post/GlyphInfo.php +++ b/src/Font/IR/Utils/Post/GlyphInfo.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\IR\Utils\Post; +namespace Famoser\PdfGenerator\Font\IR\Utils\Post; class GlyphInfo { diff --git a/src/Font/Resources/GlyphNameMapping/Factory.php b/src/Font/Resources/GlyphNameMapping/Factory.php index 5eca1505..b9e7e009 100644 --- a/src/Font/Resources/GlyphNameMapping/Factory.php +++ b/src/Font/Resources/GlyphNameMapping/Factory.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Font\Resources\GlyphNameMapping; +namespace Famoser\PdfGenerator\Font\Resources\GlyphNameMapping; class Factory { diff --git a/src/Frontend/Content/AbstractContent.php b/src/Frontend/Content/AbstractContent.php index 55e0d961..6ae246e6 100644 --- a/src/Frontend/Content/AbstractContent.php +++ b/src/Frontend/Content/AbstractContent.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Content; +namespace Famoser\PdfGenerator\Frontend\Content; -use PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; -use PdfGenerator\Frontend\Printer; +use Famoser\PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; +use Famoser\PdfGenerator\Frontend\Printer; abstract class AbstractContent { diff --git a/src/Frontend/Content/ImagePlacement.php b/src/Frontend/Content/ImagePlacement.php index 793d98ce..0e9cd93a 100644 --- a/src/Frontend/Content/ImagePlacement.php +++ b/src/Frontend/Content/ImagePlacement.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Content; +namespace Famoser\PdfGenerator\Frontend\Content; -use PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; -use PdfGenerator\Frontend\Printer; -use PdfGenerator\Frontend\Resource\Image; +use Famoser\PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; +use Famoser\PdfGenerator\Frontend\Printer; +use Famoser\PdfGenerator\Frontend\Resource\Image; class ImagePlacement extends AbstractContent { diff --git a/src/Frontend/Content/Paragraph.php b/src/Frontend/Content/Paragraph.php index 146c5c39..95df0521 100644 --- a/src/Frontend/Content/Paragraph.php +++ b/src/Frontend/Content/Paragraph.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Content; +namespace Famoser\PdfGenerator\Frontend\Content; -use PdfGenerator\Frontend\Content\Paragraph\Phrase; -use PdfGenerator\Frontend\Content\Style\TextStyle; -use PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; -use PdfGenerator\Frontend\Printer; +use Famoser\PdfGenerator\Frontend\Content\Paragraph\Phrase; +use Famoser\PdfGenerator\Frontend\Content\Style\TextStyle; +use Famoser\PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; +use Famoser\PdfGenerator\Frontend\Printer; class Paragraph extends AbstractContent { diff --git a/src/Frontend/Content/Paragraph/Phrase.php b/src/Frontend/Content/Paragraph/Phrase.php index c5ff08b4..e4570e5b 100644 --- a/src/Frontend/Content/Paragraph/Phrase.php +++ b/src/Frontend/Content/Paragraph/Phrase.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Content\Paragraph; +namespace Famoser\PdfGenerator\Frontend\Content\Paragraph; -use PdfGenerator\Frontend\Content\Style\TextStyle; +use Famoser\PdfGenerator\Frontend\Content\Style\TextStyle; class Phrase { diff --git a/src/Frontend/Content/Rectangle.php b/src/Frontend/Content/Rectangle.php index b675569f..a4f8bed4 100644 --- a/src/Frontend/Content/Rectangle.php +++ b/src/Frontend/Content/Rectangle.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Content; +namespace Famoser\PdfGenerator\Frontend\Content; -use PdfGenerator\Frontend\Content\Style\DrawingStyle; -use PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; -use PdfGenerator\Frontend\Printer; +use Famoser\PdfGenerator\Frontend\Content\Style\DrawingStyle; +use Famoser\PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; +use Famoser\PdfGenerator\Frontend\Printer; class Rectangle extends AbstractContent { diff --git a/src/Frontend/Content/Spacer.php b/src/Frontend/Content/Spacer.php index 85ade23c..07248017 100644 --- a/src/Frontend/Content/Spacer.php +++ b/src/Frontend/Content/Spacer.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Content; +namespace Famoser\PdfGenerator\Frontend\Content; -use PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; -use PdfGenerator\Frontend\Printer; +use Famoser\PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; +use Famoser\PdfGenerator\Frontend\Printer; class Spacer extends AbstractContent { diff --git a/src/Frontend/Content/Style/DrawingStyle.php b/src/Frontend/Content/Style/DrawingStyle.php index 91d114fd..f980efd7 100644 --- a/src/Frontend/Content/Style/DrawingStyle.php +++ b/src/Frontend/Content/Style/DrawingStyle.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Content\Style; +namespace Famoser\PdfGenerator\Frontend\Content\Style; -use PdfGenerator\Frontend\Layout\Style\BlockStyle; -use PdfGenerator\IR\Document\Content\Common\Color; +use Famoser\PdfGenerator\Frontend\Layout\Style\BlockStyle; +use Famoser\PdfGenerator\IR\Document\Content\Common\Color; class DrawingStyle { diff --git a/src/Frontend/Content/Style/TextStyle.php b/src/Frontend/Content/Style/TextStyle.php index d3a1537e..21cfc105 100644 --- a/src/Frontend/Content/Style/TextStyle.php +++ b/src/Frontend/Content/Style/TextStyle.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Content\Style; +namespace Famoser\PdfGenerator\Frontend\Content\Style; -use PdfGenerator\Frontend\Resource\Font; -use PdfGenerator\IR\Document\Content\Common\Color; +use Famoser\PdfGenerator\Frontend\Resource\Font; +use Famoser\PdfGenerator\IR\Document\Content\Common\Color; class TextStyle { diff --git a/src/Frontend/Layout/AbstractBlock.php b/src/Frontend/Layout/AbstractBlock.php index 6c8f0b82..3214f38c 100644 --- a/src/Frontend/Layout/AbstractBlock.php +++ b/src/Frontend/Layout/AbstractBlock.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout; +namespace Famoser\PdfGenerator\Frontend\Layout; -use PdfGenerator\Frontend\Layout\Traits\BlockTrait; -use PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; +use Famoser\PdfGenerator\Frontend\Layout\Traits\BlockTrait; +use Famoser\PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; abstract class AbstractBlock { diff --git a/src/Frontend/Layout/Block.php b/src/Frontend/Layout/Block.php index d2f0ae5d..0c901b00 100644 --- a/src/Frontend/Layout/Block.php +++ b/src/Frontend/Layout/Block.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout; +namespace Famoser\PdfGenerator\Frontend\Layout; -use PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; +use Famoser\PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; class Block extends AbstractBlock { diff --git a/src/Frontend/Layout/ContentBlock.php b/src/Frontend/Layout/ContentBlock.php index f38e1c58..ce4cbde9 100644 --- a/src/Frontend/Layout/ContentBlock.php +++ b/src/Frontend/Layout/ContentBlock.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout; +namespace Famoser\PdfGenerator\Frontend\Layout; -use PdfGenerator\Frontend\Content\AbstractContent; -use PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; +use Famoser\PdfGenerator\Frontend\Content\AbstractContent; +use Famoser\PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; class ContentBlock extends AbstractBlock { diff --git a/src/Frontend/Layout/Flow.php b/src/Frontend/Layout/Flow.php index bc084d5d..e4b4d9d7 100644 --- a/src/Frontend/Layout/Flow.php +++ b/src/Frontend/Layout/Flow.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout; +namespace Famoser\PdfGenerator\Frontend\Layout; -use PdfGenerator\Frontend\Content\AbstractContent; -use PdfGenerator\Frontend\Layout\Style\FlowDirection; -use PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; +use Famoser\PdfGenerator\Frontend\Content\AbstractContent; +use Famoser\PdfGenerator\Frontend\Layout\Style\FlowDirection; +use Famoser\PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; class Flow extends AbstractBlock { diff --git a/src/Frontend/Layout/Grid.php b/src/Frontend/Layout/Grid.php index a5714aad..eba7c68d 100644 --- a/src/Frontend/Layout/Grid.php +++ b/src/Frontend/Layout/Grid.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout; +namespace Famoser\PdfGenerator\Frontend\Layout; -use PdfGenerator\Frontend\Layout\Parts\Row; -use PdfGenerator\Frontend\Layout\Style\ColumnSize; -use PdfGenerator\Frontend\Layout\Traits\ColumnSizesTrait; -use PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; +use Famoser\PdfGenerator\Frontend\Layout\Parts\Row; +use Famoser\PdfGenerator\Frontend\Layout\Style\ColumnSize; +use Famoser\PdfGenerator\Frontend\Layout\Traits\ColumnSizesTrait; +use Famoser\PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; class Grid extends AbstractBlock { diff --git a/src/Frontend/Layout/Parts/Row.php b/src/Frontend/Layout/Parts/Row.php index c26ecb06..cad6c352 100644 --- a/src/Frontend/Layout/Parts/Row.php +++ b/src/Frontend/Layout/Parts/Row.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout\Parts; +namespace Famoser\PdfGenerator\Frontend\Layout\Parts; -use PdfGenerator\Frontend\Content\AbstractContent; -use PdfGenerator\Frontend\Layout\AbstractBlock; -use PdfGenerator\Frontend\Layout\ContentBlock; -use PdfGenerator\Frontend\Layout\Style\BlockStyle; +use Famoser\PdfGenerator\Frontend\Content\AbstractContent; +use Famoser\PdfGenerator\Frontend\Layout\AbstractBlock; +use Famoser\PdfGenerator\Frontend\Layout\ContentBlock; +use Famoser\PdfGenerator\Frontend\Layout\Style\BlockStyle; class Row { diff --git a/src/Frontend/Layout/Style/BlockStyle.php b/src/Frontend/Layout/Style/BlockStyle.php index f61b9f59..5a0e4010 100644 --- a/src/Frontend/Layout/Style/BlockStyle.php +++ b/src/Frontend/Layout/Style/BlockStyle.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout\Style; +namespace Famoser\PdfGenerator\Frontend\Layout\Style; -use PdfGenerator\IR\Document\Content\Common\Color; +use Famoser\PdfGenerator\IR\Document\Content\Common\Color; class BlockStyle { diff --git a/src/Frontend/Layout/Style/ColumnSize.php b/src/Frontend/Layout/Style/ColumnSize.php index 43d09c63..504b2fe4 100644 --- a/src/Frontend/Layout/Style/ColumnSize.php +++ b/src/Frontend/Layout/Style/ColumnSize.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout\Style; +namespace Famoser\PdfGenerator\Frontend\Layout\Style; enum ColumnSize: string { diff --git a/src/Frontend/Layout/Style/FlowDirection.php b/src/Frontend/Layout/Style/FlowDirection.php index 95add2fe..437b6070 100644 --- a/src/Frontend/Layout/Style/FlowDirection.php +++ b/src/Frontend/Layout/Style/FlowDirection.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout\Style; +namespace Famoser\PdfGenerator\Frontend\Layout\Style; enum FlowDirection: string { diff --git a/src/Frontend/Layout/Table.php b/src/Frontend/Layout/Table.php index 35ff55ad..9823ff5b 100644 --- a/src/Frontend/Layout/Table.php +++ b/src/Frontend/Layout/Table.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout; +namespace Famoser\PdfGenerator\Frontend\Layout; -use PdfGenerator\Frontend\Layout\Parts\Row; -use PdfGenerator\Frontend\Layout\Style\ColumnSize; -use PdfGenerator\Frontend\Layout\Traits\ColumnSizesTrait; -use PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; +use Famoser\PdfGenerator\Frontend\Layout\Parts\Row; +use Famoser\PdfGenerator\Frontend\Layout\Style\ColumnSize; +use Famoser\PdfGenerator\Frontend\Layout\Traits\ColumnSizesTrait; +use Famoser\PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; class Table extends AbstractBlock { diff --git a/src/Frontend/Layout/Traits/BlockTrait.php b/src/Frontend/Layout/Traits/BlockTrait.php index f4c36432..02f5faaf 100644 --- a/src/Frontend/Layout/Traits/BlockTrait.php +++ b/src/Frontend/Layout/Traits/BlockTrait.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout\Traits; +namespace Famoser\PdfGenerator\Frontend\Layout\Traits; -use PdfGenerator\Frontend\Layout\Style\BlockStyle; +use Famoser\PdfGenerator\Frontend\Layout\Style\BlockStyle; trait BlockTrait { diff --git a/src/Frontend/Layout/Traits/ColumnSizesTrait.php b/src/Frontend/Layout/Traits/ColumnSizesTrait.php index 369dab52..d6ee0dcd 100644 --- a/src/Frontend/Layout/Traits/ColumnSizesTrait.php +++ b/src/Frontend/Layout/Traits/ColumnSizesTrait.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Layout\Traits; +namespace Famoser\PdfGenerator\Frontend\Layout\Traits; -use PdfGenerator\Frontend\Layout\Style\ColumnSize; +use Famoser\PdfGenerator\Frontend\Layout\Style\ColumnSize; trait ColumnSizesTrait { diff --git a/src/Frontend/LayoutEngine/Allocate/Allocators/FlowAllocator.php b/src/Frontend/LayoutEngine/Allocate/Allocators/FlowAllocator.php index 55124674..0b078d23 100644 --- a/src/Frontend/LayoutEngine/Allocate/Allocators/FlowAllocator.php +++ b/src/Frontend/LayoutEngine/Allocate/Allocators/FlowAllocator.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators; -use PdfGenerator\Frontend\Layout\AbstractBlock; -use PdfGenerator\Frontend\Layout\Flow; -use PdfGenerator\Frontend\Layout\Style\FlowDirection; -use PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocation; -use PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocationVisitor; +use Famoser\PdfGenerator\Frontend\Layout\AbstractBlock; +use Famoser\PdfGenerator\Frontend\Layout\Flow; +use Famoser\PdfGenerator\Frontend\Layout\Style\FlowDirection; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocation; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocationVisitor; readonly class FlowAllocator { diff --git a/src/Frontend/LayoutEngine/Allocate/Allocators/GridAllocator.php b/src/Frontend/LayoutEngine/Allocate/Allocators/GridAllocator.php index cb4a2cee..caccef90 100644 --- a/src/Frontend/LayoutEngine/Allocate/Allocators/GridAllocator.php +++ b/src/Frontend/LayoutEngine/Allocate/Allocators/GridAllocator.php @@ -9,15 +9,15 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators; - -use PdfGenerator\Frontend\Layout\Grid; -use PdfGenerator\Frontend\Layout\Parts\Row; -use PdfGenerator\Frontend\Layout\Style\ColumnSize; -use PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocation; -use PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocationVisitor; -use PdfGenerator\Frontend\LayoutEngine\Allocate\ContentAllocation; -use PdfGenerator\Frontend\LayoutEngine\Measure\BlockMeasurementVisitor; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators; + +use Famoser\PdfGenerator\Frontend\Layout\Grid; +use Famoser\PdfGenerator\Frontend\Layout\Parts\Row; +use Famoser\PdfGenerator\Frontend\Layout\Style\ColumnSize; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocation; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocationVisitor; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\ContentAllocation; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\BlockMeasurementVisitor; readonly class GridAllocator { diff --git a/src/Frontend/LayoutEngine/Allocate/Allocators/ParagraphAllocator.php b/src/Frontend/LayoutEngine/Allocate/Allocators/ParagraphAllocator.php index 82562b4a..e8ccf2de 100644 --- a/src/Frontend/LayoutEngine/Allocate/Allocators/ParagraphAllocator.php +++ b/src/Frontend/LayoutEngine/Allocate/Allocators/ParagraphAllocator.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators; -use PdfGenerator\Frontend\Content\Paragraph; -use PdfGenerator\Frontend\Resource\Font\FontMeasurement; -use PdfGenerator\Frontend\Resource\Font\FontRepository; +use Famoser\PdfGenerator\Frontend\Content\Paragraph; +use Famoser\PdfGenerator\Frontend\Resource\Font\FontMeasurement; +use Famoser\PdfGenerator\Frontend\Resource\Font\FontRepository; readonly class ParagraphAllocator { diff --git a/src/Frontend/LayoutEngine/Allocate/Allocators/TableAllocator.php b/src/Frontend/LayoutEngine/Allocate/Allocators/TableAllocator.php index 3aad20a9..cfecde8a 100644 --- a/src/Frontend/LayoutEngine/Allocate/Allocators/TableAllocator.php +++ b/src/Frontend/LayoutEngine/Allocate/Allocators/TableAllocator.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators; -use PdfGenerator\Frontend\Layout\Parts\Row; -use PdfGenerator\Frontend\Layout\Table; -use PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocation; +use Famoser\PdfGenerator\Frontend\Layout\Parts\Row; +use Famoser\PdfGenerator\Frontend\Layout\Table; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocation; readonly class TableAllocator { diff --git a/src/Frontend/LayoutEngine/Allocate/BlockAllocation.php b/src/Frontend/LayoutEngine/Allocate/BlockAllocation.php index 3439c032..430bd001 100644 --- a/src/Frontend/LayoutEngine/Allocate/BlockAllocation.php +++ b/src/Frontend/LayoutEngine/Allocate/BlockAllocation.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Allocate; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate; -use PdfGenerator\Frontend\Layout\AbstractBlock; +use Famoser\PdfGenerator\Frontend\Layout\AbstractBlock; readonly class BlockAllocation { diff --git a/src/Frontend/LayoutEngine/Allocate/BlockAllocationVisitor.php b/src/Frontend/LayoutEngine/Allocate/BlockAllocationVisitor.php index 01b88377..e4185773 100644 --- a/src/Frontend/LayoutEngine/Allocate/BlockAllocationVisitor.php +++ b/src/Frontend/LayoutEngine/Allocate/BlockAllocationVisitor.php @@ -9,18 +9,18 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Allocate; - -use PdfGenerator\Frontend\Layout\AbstractBlock; -use PdfGenerator\Frontend\Layout\Block; -use PdfGenerator\Frontend\Layout\ContentBlock; -use PdfGenerator\Frontend\Layout\Flow; -use PdfGenerator\Frontend\Layout\Grid; -use PdfGenerator\Frontend\Layout\Table; -use PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators\FlowAllocator; -use PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators\GridAllocator; -use PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators\TableAllocator; -use PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate; + +use Famoser\PdfGenerator\Frontend\Layout\AbstractBlock; +use Famoser\PdfGenerator\Frontend\Layout\Block; +use Famoser\PdfGenerator\Frontend\Layout\ContentBlock; +use Famoser\PdfGenerator\Frontend\Layout\Flow; +use Famoser\PdfGenerator\Frontend\Layout\Grid; +use Famoser\PdfGenerator\Frontend\Layout\Table; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators\FlowAllocator; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators\GridAllocator; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators\TableAllocator; +use Famoser\PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; /** * This allocates content on the PDF. diff --git a/src/Frontend/LayoutEngine/Allocate/ContentAllocation.php b/src/Frontend/LayoutEngine/Allocate/ContentAllocation.php index b8c108f9..14ef75bf 100644 --- a/src/Frontend/LayoutEngine/Allocate/ContentAllocation.php +++ b/src/Frontend/LayoutEngine/Allocate/ContentAllocation.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Allocate; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate; -use PdfGenerator\Frontend\Content\AbstractContent; -use PdfGenerator\Frontend\Content\Rectangle; -use PdfGenerator\Frontend\Content\Style\DrawingStyle; -use PdfGenerator\Frontend\Layout\Style\BlockStyle; +use Famoser\PdfGenerator\Frontend\Content\AbstractContent; +use Famoser\PdfGenerator\Frontend\Content\Rectangle; +use Famoser\PdfGenerator\Frontend\Content\Style\DrawingStyle; +use Famoser\PdfGenerator\Frontend\Layout\Style\BlockStyle; readonly class ContentAllocation { diff --git a/src/Frontend/LayoutEngine/Allocate/ContentAllocationVisitor.php b/src/Frontend/LayoutEngine/Allocate/ContentAllocationVisitor.php index 22cda9c3..c2bccd79 100644 --- a/src/Frontend/LayoutEngine/Allocate/ContentAllocationVisitor.php +++ b/src/Frontend/LayoutEngine/Allocate/ContentAllocationVisitor.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Allocate; - -use PdfGenerator\Frontend\Content\ImagePlacement; -use PdfGenerator\Frontend\Content\Paragraph; -use PdfGenerator\Frontend\Content\Rectangle; -use PdfGenerator\Frontend\Content\Spacer; -use PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators\ParagraphAllocator; -use PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate; + +use Famoser\PdfGenerator\Frontend\Content\ImagePlacement; +use Famoser\PdfGenerator\Frontend\Content\Paragraph; +use Famoser\PdfGenerator\Frontend\Content\Rectangle; +use Famoser\PdfGenerator\Frontend\Content\Spacer; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\Allocators\ParagraphAllocator; +use Famoser\PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; /** * @implements ContentVisitorInterface diff --git a/src/Frontend/LayoutEngine/BlockVisitorInterface.php b/src/Frontend/LayoutEngine/BlockVisitorInterface.php index f16c003c..032fe5a3 100644 --- a/src/Frontend/LayoutEngine/BlockVisitorInterface.php +++ b/src/Frontend/LayoutEngine/BlockVisitorInterface.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine; -use PdfGenerator\Frontend\Layout\Block; -use PdfGenerator\Frontend\Layout\ContentBlock; -use PdfGenerator\Frontend\Layout\Flow; -use PdfGenerator\Frontend\Layout\Grid; -use PdfGenerator\Frontend\Layout\Table; +use Famoser\PdfGenerator\Frontend\Layout\Block; +use Famoser\PdfGenerator\Frontend\Layout\ContentBlock; +use Famoser\PdfGenerator\Frontend\Layout\Flow; +use Famoser\PdfGenerator\Frontend\Layout\Grid; +use Famoser\PdfGenerator\Frontend\Layout\Table; /** * @template T diff --git a/src/Frontend/LayoutEngine/ContentVisitorInterface.php b/src/Frontend/LayoutEngine/ContentVisitorInterface.php index 474accb5..749dc133 100644 --- a/src/Frontend/LayoutEngine/ContentVisitorInterface.php +++ b/src/Frontend/LayoutEngine/ContentVisitorInterface.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine; -use PdfGenerator\Frontend\Content\ImagePlacement; -use PdfGenerator\Frontend\Content\Paragraph; -use PdfGenerator\Frontend\Content\Rectangle; -use PdfGenerator\Frontend\Content\Spacer; +use Famoser\PdfGenerator\Frontend\Content\ImagePlacement; +use Famoser\PdfGenerator\Frontend\Content\Paragraph; +use Famoser\PdfGenerator\Frontend\Content\Rectangle; +use Famoser\PdfGenerator\Frontend\Content\Spacer; /** * @template T diff --git a/src/Frontend/LayoutEngine/Measure/BlockMeasurementVisitor.php b/src/Frontend/LayoutEngine/Measure/BlockMeasurementVisitor.php index 5f9fdc25..2a172a96 100644 --- a/src/Frontend/LayoutEngine/Measure/BlockMeasurementVisitor.php +++ b/src/Frontend/LayoutEngine/Measure/BlockMeasurementVisitor.php @@ -9,17 +9,17 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Measure; - -use PdfGenerator\Frontend\Layout\AbstractBlock; -use PdfGenerator\Frontend\Layout\Block; -use PdfGenerator\Frontend\Layout\ContentBlock; -use PdfGenerator\Frontend\Layout\Flow; -use PdfGenerator\Frontend\Layout\Grid; -use PdfGenerator\Frontend\Layout\Table; -use PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; -use PdfGenerator\Frontend\LayoutEngine\Measure\Measurer\FlowMeasurer; -use PdfGenerator\Frontend\LayoutEngine\Measure\Measurer\GridMeasurer; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Measure; + +use Famoser\PdfGenerator\Frontend\Layout\AbstractBlock; +use Famoser\PdfGenerator\Frontend\Layout\Block; +use Famoser\PdfGenerator\Frontend\Layout\ContentBlock; +use Famoser\PdfGenerator\Frontend\Layout\Flow; +use Famoser\PdfGenerator\Frontend\Layout\Grid; +use Famoser\PdfGenerator\Frontend\Layout\Table; +use Famoser\PdfGenerator\Frontend\LayoutEngine\BlockVisitorInterface; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\Measurer\FlowMeasurer; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\Measurer\GridMeasurer; /** * Measurements allow the layout engine to plan the layout. It contains: diff --git a/src/Frontend/LayoutEngine/Measure/ContentMeasurementVisitor.php b/src/Frontend/LayoutEngine/Measure/ContentMeasurementVisitor.php index 696cd3a5..9989e645 100644 --- a/src/Frontend/LayoutEngine/Measure/ContentMeasurementVisitor.php +++ b/src/Frontend/LayoutEngine/Measure/ContentMeasurementVisitor.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Measure; - -use PdfGenerator\Frontend\Content\ImagePlacement; -use PdfGenerator\Frontend\Content\Paragraph; -use PdfGenerator\Frontend\Content\Rectangle; -use PdfGenerator\Frontend\Content\Spacer; -use PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; -use PdfGenerator\Frontend\LayoutEngine\Measure\Measurer\ParagraphMeasurer; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Measure; + +use Famoser\PdfGenerator\Frontend\Content\ImagePlacement; +use Famoser\PdfGenerator\Frontend\Content\Paragraph; +use Famoser\PdfGenerator\Frontend\Content\Rectangle; +use Famoser\PdfGenerator\Frontend\Content\Spacer; +use Famoser\PdfGenerator\Frontend\LayoutEngine\ContentVisitorInterface; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\Measurer\ParagraphMeasurer; /** * @implements ContentVisitorInterface diff --git a/src/Frontend/LayoutEngine/Measure/Measurement.php b/src/Frontend/LayoutEngine/Measure/Measurement.php index c8b03cb0..e1ca2503 100644 --- a/src/Frontend/LayoutEngine/Measure/Measurement.php +++ b/src/Frontend/LayoutEngine/Measure/Measurement.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Measure; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Measure; readonly class Measurement { diff --git a/src/Frontend/LayoutEngine/Measure/Measurer/FlowMeasurer.php b/src/Frontend/LayoutEngine/Measure/Measurer/FlowMeasurer.php index 996ea310..1de4b85f 100644 --- a/src/Frontend/LayoutEngine/Measure/Measurer/FlowMeasurer.php +++ b/src/Frontend/LayoutEngine/Measure/Measurer/FlowMeasurer.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Measure\Measurer; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\Measurer; -use PdfGenerator\Frontend\Layout\AbstractBlock; -use PdfGenerator\Frontend\Layout\Style\FlowDirection; -use PdfGenerator\Frontend\LayoutEngine\Measure\BlockMeasurementVisitor; -use PdfGenerator\Frontend\LayoutEngine\Measure\Measurement; +use Famoser\PdfGenerator\Frontend\Layout\AbstractBlock; +use Famoser\PdfGenerator\Frontend\Layout\Style\FlowDirection; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\BlockMeasurementVisitor; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\Measurement; readonly class FlowMeasurer { diff --git a/src/Frontend/LayoutEngine/Measure/Measurer/GridMeasurer.php b/src/Frontend/LayoutEngine/Measure/Measurer/GridMeasurer.php index 683df881..d2fa2cf0 100644 --- a/src/Frontend/LayoutEngine/Measure/Measurer/GridMeasurer.php +++ b/src/Frontend/LayoutEngine/Measure/Measurer/GridMeasurer.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Measure\Measurer; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\Measurer; -use PdfGenerator\Frontend\Layout\AbstractBlock; -use PdfGenerator\Frontend\Layout\Parts\Row; -use PdfGenerator\Frontend\Layout\Style\ColumnSize; -use PdfGenerator\Frontend\LayoutEngine\Measure\BlockMeasurementVisitor; -use PdfGenerator\Frontend\LayoutEngine\Measure\Measurement; +use Famoser\PdfGenerator\Frontend\Layout\AbstractBlock; +use Famoser\PdfGenerator\Frontend\Layout\Parts\Row; +use Famoser\PdfGenerator\Frontend\Layout\Style\ColumnSize; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\BlockMeasurementVisitor; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\Measurement; readonly class GridMeasurer { diff --git a/src/Frontend/LayoutEngine/Measure/Measurer/ParagraphMeasurer.php b/src/Frontend/LayoutEngine/Measure/Measurer/ParagraphMeasurer.php index cfd5a64b..2e806e36 100644 --- a/src/Frontend/LayoutEngine/Measure/Measurer/ParagraphMeasurer.php +++ b/src/Frontend/LayoutEngine/Measure/Measurer/ParagraphMeasurer.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\LayoutEngine\Measure\Measurer; +namespace Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\Measurer; -use PdfGenerator\Frontend\Content\Paragraph\Phrase; -use PdfGenerator\Frontend\LayoutEngine\Measure\Measurement; -use PdfGenerator\Frontend\Resource\Font\FontMeasurement; -use PdfGenerator\Frontend\Resource\Font\FontRepository; +use Famoser\PdfGenerator\Frontend\Content\Paragraph\Phrase; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Measure\Measurement; +use Famoser\PdfGenerator\Frontend\Resource\Font\FontMeasurement; +use Famoser\PdfGenerator\Frontend\Resource\Font\FontRepository; readonly class ParagraphMeasurer { diff --git a/src/Frontend/LinearDocument.php b/src/Frontend/LinearDocument.php index e4b489d6..2cfee1c7 100644 --- a/src/Frontend/LinearDocument.php +++ b/src/Frontend/LinearDocument.php @@ -9,16 +9,16 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend; +namespace Famoser\PdfGenerator\Frontend; use DocumentGenerator\DocumentInterface; -use PdfGenerator\Frontend\Layout\AbstractBlock; -use PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocation; -use PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocationVisitor; -use PdfGenerator\Frontend\Resource\Font\FontRepository; -use PdfGenerator\Frontend\Resource\Image\ImageRepository; -use PdfGenerator\IR\Document; -use PdfGenerator\IR\Document\Page; +use Famoser\PdfGenerator\Frontend\Layout\AbstractBlock; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocation; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocationVisitor; +use Famoser\PdfGenerator\Frontend\Resource\Font\FontRepository; +use Famoser\PdfGenerator\Frontend\Resource\Image\ImageRepository; +use Famoser\PdfGenerator\IR\Document; +use Famoser\PdfGenerator\IR\Document\Page; class LinearDocument implements DocumentInterface { diff --git a/src/Frontend/Printer.php b/src/Frontend/Printer.php index 1161f198..d9e5face 100644 --- a/src/Frontend/Printer.php +++ b/src/Frontend/Printer.php @@ -9,23 +9,23 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend; - -use PdfGenerator\Frontend\Content\Paragraph\Phrase; -use PdfGenerator\Frontend\Content\Style\DrawingStyle; -use PdfGenerator\Frontend\Content\Style\TextStyle; -use PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocation; -use PdfGenerator\Frontend\Resource\Font\FontRepository; -use PdfGenerator\Frontend\Resource\Image\ImageRepository; -use PdfGenerator\IR\Document; -use PdfGenerator\IR\Document\Content\Common\Position; -use PdfGenerator\IR\Document\Content\Common\Size; -use PdfGenerator\IR\Document\Content\ImagePlacement; -use PdfGenerator\IR\Document\Content\Paragraph; -use PdfGenerator\IR\Document\Content\Rectangle; -use PdfGenerator\IR\Document\Content\Rectangle\RectangleStyle; -use PdfGenerator\IR\Document\Content\Text; -use PdfGenerator\IR\Document\Page; +namespace Famoser\PdfGenerator\Frontend; + +use Famoser\PdfGenerator\Frontend\Content\Paragraph\Phrase; +use Famoser\PdfGenerator\Frontend\Content\Style\DrawingStyle; +use Famoser\PdfGenerator\Frontend\Content\Style\TextStyle; +use Famoser\PdfGenerator\Frontend\LayoutEngine\Allocate\BlockAllocation; +use Famoser\PdfGenerator\Frontend\Resource\Font\FontRepository; +use Famoser\PdfGenerator\Frontend\Resource\Image\ImageRepository; +use Famoser\PdfGenerator\IR\Document; +use Famoser\PdfGenerator\IR\Document\Content\Common\Position; +use Famoser\PdfGenerator\IR\Document\Content\Common\Size; +use Famoser\PdfGenerator\IR\Document\Content\ImagePlacement; +use Famoser\PdfGenerator\IR\Document\Content\Paragraph; +use Famoser\PdfGenerator\IR\Document\Content\Rectangle; +use Famoser\PdfGenerator\IR\Document\Content\Rectangle\RectangleStyle; +use Famoser\PdfGenerator\IR\Document\Content\Text; +use Famoser\PdfGenerator\IR\Document\Page; readonly class Printer { diff --git a/src/Frontend/Resource/Font.php b/src/Frontend/Resource/Font.php index 150b9773..343df4e9 100644 --- a/src/Frontend/Resource/Font.php +++ b/src/Frontend/Resource/Font.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource; +namespace Famoser\PdfGenerator\Frontend\Resource; -use PdfGenerator\Frontend\Resource\Font\FontFamily; -use PdfGenerator\Frontend\Resource\Font\FontStyle; -use PdfGenerator\Frontend\Resource\Font\FontWeight; +use Famoser\PdfGenerator\Frontend\Resource\Font\FontFamily; +use Famoser\PdfGenerator\Frontend\Resource\Font\FontStyle; +use Famoser\PdfGenerator\Frontend\Resource\Font\FontWeight; class Font { diff --git a/src/Frontend/Resource/Font/FontFamily.php b/src/Frontend/Resource/Font/FontFamily.php index 62f1f3bf..c0f2c98d 100644 --- a/src/Frontend/Resource/Font/FontFamily.php +++ b/src/Frontend/Resource/Font/FontFamily.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource\Font; +namespace Famoser\PdfGenerator\Frontend\Resource\Font; enum FontFamily: string { diff --git a/src/Frontend/Resource/Font/FontMeasurement.php b/src/Frontend/Resource/Font/FontMeasurement.php index 3937cbc9..17721519 100644 --- a/src/Frontend/Resource/Font/FontMeasurement.php +++ b/src/Frontend/Resource/Font/FontMeasurement.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource\Font; +namespace Famoser\PdfGenerator\Frontend\Resource\Font; -use PdfGenerator\Frontend\Resource\Font\WordSizer\WordSizerInterface; -use PdfGenerator\IR\Document\Resource\Font; +use Famoser\PdfGenerator\Frontend\Resource\Font\WordSizer\WordSizerInterface; +use Famoser\PdfGenerator\IR\Document\Resource\Font; readonly class FontMeasurement { diff --git a/src/Frontend/Resource/Font/FontRepository.php b/src/Frontend/Resource/Font/FontRepository.php index 781a323b..73890348 100644 --- a/src/Frontend/Resource/Font/FontRepository.php +++ b/src/Frontend/Resource/Font/FontRepository.php @@ -9,15 +9,15 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource\Font; - -use PdfGenerator\Frontend\Content\Style\TextStyle; -use PdfGenerator\Frontend\Resource\Font; -use PdfGenerator\Frontend\Resource\Font\WordSizer\WordSizerInterface; -use PdfGenerator\Frontend\Resource\Font\WordSizer\WordSizerVisitor; -use PdfGenerator\IR\Document\Resource\Font\DefaultFont; -use PdfGenerator\IR\Document\Resource\Font\EmbeddedFont; -use PdfGenerator\Utils\SingletonTrait; +namespace Famoser\PdfGenerator\Frontend\Resource\Font; + +use Famoser\PdfGenerator\Frontend\Content\Style\TextStyle; +use Famoser\PdfGenerator\Frontend\Resource\Font; +use Famoser\PdfGenerator\Frontend\Resource\Font\WordSizer\WordSizerInterface; +use Famoser\PdfGenerator\Frontend\Resource\Font\WordSizer\WordSizerVisitor; +use Famoser\PdfGenerator\IR\Document\Resource\Font\DefaultFont; +use Famoser\PdfGenerator\IR\Document\Resource\Font\EmbeddedFont; +use Famoser\PdfGenerator\Utils\SingletonTrait; class FontRepository { diff --git a/src/Frontend/Resource/Font/FontStyle.php b/src/Frontend/Resource/Font/FontStyle.php index 09cd9420..c4f0b431 100644 --- a/src/Frontend/Resource/Font/FontStyle.php +++ b/src/Frontend/Resource/Font/FontStyle.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource\Font; +namespace Famoser\PdfGenerator\Frontend\Resource\Font; enum FontStyle: string { diff --git a/src/Frontend/Resource/Font/FontWeight.php b/src/Frontend/Resource/Font/FontWeight.php index 3ba8b64e..b78b4aea 100644 --- a/src/Frontend/Resource/Font/FontWeight.php +++ b/src/Frontend/Resource/Font/FontWeight.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource\Font; +namespace Famoser\PdfGenerator\Frontend\Resource\Font; enum FontWeight: string { diff --git a/src/Frontend/Resource/Font/WordSizer/MonospaceProportionalWordSizer.php b/src/Frontend/Resource/Font/WordSizer/MonospaceProportionalWordSizer.php index 5cad3aa8..b9a0bb93 100644 --- a/src/Frontend/Resource/Font/WordSizer/MonospaceProportionalWordSizer.php +++ b/src/Frontend/Resource/Font/WordSizer/MonospaceProportionalWordSizer.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource\Font\WordSizer; +namespace Famoser\PdfGenerator\Frontend\Resource\Font\WordSizer; readonly class MonospaceProportionalWordSizer implements WordSizerInterface { diff --git a/src/Frontend/Resource/Font/WordSizer/ProportionalWordSizer.php b/src/Frontend/Resource/Font/WordSizer/ProportionalWordSizer.php index f5550145..e4930d8e 100644 --- a/src/Frontend/Resource/Font/WordSizer/ProportionalWordSizer.php +++ b/src/Frontend/Resource/Font/WordSizer/ProportionalWordSizer.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource\Font\WordSizer; +namespace Famoser\PdfGenerator\Frontend\Resource\Font\WordSizer; readonly class ProportionalWordSizer implements WordSizerInterface { diff --git a/src/Frontend/Resource/Font/WordSizer/WordSizerInterface.php b/src/Frontend/Resource/Font/WordSizer/WordSizerInterface.php index 191efc0b..0b237418 100644 --- a/src/Frontend/Resource/Font/WordSizer/WordSizerInterface.php +++ b/src/Frontend/Resource/Font/WordSizer/WordSizerInterface.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource\Font\WordSizer; +namespace Famoser\PdfGenerator\Frontend\Resource\Font\WordSizer; interface WordSizerInterface { diff --git a/src/Frontend/Resource/Font/WordSizer/WordSizerVisitor.php b/src/Frontend/Resource/Font/WordSizer/WordSizerVisitor.php index 9760bcd2..bca07532 100644 --- a/src/Frontend/Resource/Font/WordSizer/WordSizerVisitor.php +++ b/src/Frontend/Resource/Font/WordSizer/WordSizerVisitor.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource\Font\WordSizer; +namespace Famoser\PdfGenerator\Frontend\Resource\Font\WordSizer; -use PdfGenerator\Font\IR\CharacterSizer; -use PdfGenerator\IR\Document\Resource\Font\DefaultFont; -use PdfGenerator\IR\Document\Resource\Font\EmbeddedFont; -use PdfGenerator\IR\Document\Resource\Font\FontVisitor; +use Famoser\PdfGenerator\Font\IR\CharacterSizer; +use Famoser\PdfGenerator\IR\Document\Resource\Font\DefaultFont; +use Famoser\PdfGenerator\IR\Document\Resource\Font\EmbeddedFont; +use Famoser\PdfGenerator\IR\Document\Resource\Font\FontVisitor; /** * @implements FontVisitor diff --git a/src/Frontend/Resource/Image.php b/src/Frontend/Resource/Image.php index 06db293b..03d232b2 100644 --- a/src/Frontend/Resource/Image.php +++ b/src/Frontend/Resource/Image.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource; +namespace Famoser\PdfGenerator\Frontend\Resource; class Image { diff --git a/src/Frontend/Resource/Image/ImageRepository.php b/src/Frontend/Resource/Image/ImageRepository.php index 77f3a3df..493d4568 100644 --- a/src/Frontend/Resource/Image/ImageRepository.php +++ b/src/Frontend/Resource/Image/ImageRepository.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Frontend\Resource\Image; +namespace Famoser\PdfGenerator\Frontend\Resource\Image; -use PdfGenerator\IR\Document\Resource\Image; -use PdfGenerator\Utils\SingletonTrait; +use Famoser\PdfGenerator\IR\Document\Resource\Image; +use Famoser\PdfGenerator\Utils\SingletonTrait; class ImageRepository { diff --git a/src/IR/Analysis/AnalysisResult.php b/src/IR/Analysis/AnalysisResult.php index 73858ac5..4fd4a6fc 100644 --- a/src/IR/Analysis/AnalysisResult.php +++ b/src/IR/Analysis/AnalysisResult.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Analysis; +namespace Famoser\PdfGenerator\IR\Analysis; -use PdfGenerator\IR\Document\Content\Common\Size; -use PdfGenerator\IR\Document\Resource\Font; -use PdfGenerator\IR\Document\Resource\Image; +use Famoser\PdfGenerator\IR\Document\Content\Common\Size; +use Famoser\PdfGenerator\IR\Document\Resource\Font; +use Famoser\PdfGenerator\IR\Document\Resource\Image; readonly class AnalysisResult { diff --git a/src/IR/Analysis/AnalyzeContentVisitor.php b/src/IR/Analysis/AnalyzeContentVisitor.php index c87b5742..8df45631 100644 --- a/src/IR/Analysis/AnalyzeContentVisitor.php +++ b/src/IR/Analysis/AnalyzeContentVisitor.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Analysis; - -use PdfGenerator\IR\Document\Content\Common\Size; -use PdfGenerator\IR\Document\Content\ContentVisitorInterface; -use PdfGenerator\IR\Document\Content\ImagePlacement; -use PdfGenerator\IR\Document\Content\Paragraph; -use PdfGenerator\IR\Document\Content\Rectangle; -use PdfGenerator\IR\Document\Content\Text; +namespace Famoser\PdfGenerator\IR\Analysis; + +use Famoser\PdfGenerator\IR\Document\Content\Common\Size; +use Famoser\PdfGenerator\IR\Document\Content\ContentVisitorInterface; +use Famoser\PdfGenerator\IR\Document\Content\ImagePlacement; +use Famoser\PdfGenerator\IR\Document\Content\Paragraph; +use Famoser\PdfGenerator\IR\Document\Content\Rectangle; +use Famoser\PdfGenerator\IR\Document\Content\Text; /** * @implements ContentVisitorInterface diff --git a/src/IR/Document.php b/src/IR/Document.php index 9a6a78f8..1fa56c7d 100644 --- a/src/IR/Document.php +++ b/src/IR/Document.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR; +namespace Famoser\PdfGenerator\IR; -use PdfGenerator\IR\Analysis\AnalyzeContentVisitor; -use PdfGenerator\IR\Document\Page; -use PdfGenerator\IR\Document\Resource\DocumentResources; +use Famoser\PdfGenerator\IR\Analysis\AnalyzeContentVisitor; +use Famoser\PdfGenerator\IR\Document\Page; +use Famoser\PdfGenerator\IR\Document\Resource\DocumentResources; class Document { diff --git a/src/IR/Document/Base/BaseDocumentResource.php b/src/IR/Document/Base/BaseDocumentResource.php index 83142432..03596c32 100644 --- a/src/IR/Document/Base/BaseDocumentResource.php +++ b/src/IR/Document/Base/BaseDocumentResource.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Base; +namespace Famoser\PdfGenerator\IR\Document\Base; -use PdfGenerator\Backend\Structure\Document\Base\BaseDocumentStructure; -use PdfGenerator\IR\DocumentVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Base\BaseDocumentStructure; +use Famoser\PdfGenerator\IR\DocumentVisitor; abstract readonly class BaseDocumentResource { diff --git a/src/IR/Document/Content/Base/BaseContent.php b/src/IR/Document/Content/Base/BaseContent.php index 7b26114f..8b3616f3 100644 --- a/src/IR/Document/Content/Base/BaseContent.php +++ b/src/IR/Document/Content/Base/BaseContent.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content\Base; +namespace Famoser\PdfGenerator\IR\Document\Content\Base; -use PdfGenerator\IR\Document\Content\ContentVisitorInterface; +use Famoser\PdfGenerator\IR\Document\Content\ContentVisitorInterface; abstract readonly class BaseContent { diff --git a/src/IR/Document/Content/Common/Color.php b/src/IR/Document/Content/Common/Color.php index edad6b0f..afa223c1 100644 --- a/src/IR/Document/Content/Common/Color.php +++ b/src/IR/Document/Content/Common/Color.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content\Common; +namespace Famoser\PdfGenerator\IR\Document\Content\Common; readonly class Color { diff --git a/src/IR/Document/Content/Common/Position.php b/src/IR/Document/Content/Common/Position.php index f9ccea65..25d1da45 100644 --- a/src/IR/Document/Content/Common/Position.php +++ b/src/IR/Document/Content/Common/Position.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content\Common; +namespace Famoser\PdfGenerator\IR\Document\Content\Common; readonly class Position { diff --git a/src/IR/Document/Content/Common/Size.php b/src/IR/Document/Content/Common/Size.php index 8a6f8887..7b5497fe 100644 --- a/src/IR/Document/Content/Common/Size.php +++ b/src/IR/Document/Content/Common/Size.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content\Common; +namespace Famoser\PdfGenerator\IR\Document\Content\Common; readonly class Size { diff --git a/src/IR/Document/Content/ContentVisitorInterface.php b/src/IR/Document/Content/ContentVisitorInterface.php index 24e325e2..641b9db7 100644 --- a/src/IR/Document/Content/ContentVisitorInterface.php +++ b/src/IR/Document/Content/ContentVisitorInterface.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content; +namespace Famoser\PdfGenerator\IR\Document\Content; /** * @template T diff --git a/src/IR/Document/Content/ImagePlacement.php b/src/IR/Document/Content/ImagePlacement.php index 4b4ce8d7..9b82e12b 100644 --- a/src/IR/Document/Content/ImagePlacement.php +++ b/src/IR/Document/Content/ImagePlacement.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content; +namespace Famoser\PdfGenerator\IR\Document\Content; -use PdfGenerator\IR\Document\Content\Base\BaseContent; -use PdfGenerator\IR\Document\Content\Common\Position; -use PdfGenerator\IR\Document\Content\Common\Size; -use PdfGenerator\IR\Document\Resource\Image; +use Famoser\PdfGenerator\IR\Document\Content\Base\BaseContent; +use Famoser\PdfGenerator\IR\Document\Content\Common\Position; +use Famoser\PdfGenerator\IR\Document\Content\Common\Size; +use Famoser\PdfGenerator\IR\Document\Resource\Image; readonly class ImagePlacement extends BaseContent { diff --git a/src/IR/Document/Content/Paragraph.php b/src/IR/Document/Content/Paragraph.php index 07ffdb8b..4f1f2af2 100644 --- a/src/IR/Document/Content/Paragraph.php +++ b/src/IR/Document/Content/Paragraph.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content; +namespace Famoser\PdfGenerator\IR\Document\Content; -use PdfGenerator\IR\Document\Content\Base\BaseContent; -use PdfGenerator\IR\Document\Content\Common\Position; -use PdfGenerator\IR\Document\Content\Text\Phrase; +use Famoser\PdfGenerator\IR\Document\Content\Base\BaseContent; +use Famoser\PdfGenerator\IR\Document\Content\Common\Position; +use Famoser\PdfGenerator\IR\Document\Content\Text\Phrase; readonly class Paragraph extends BaseContent { diff --git a/src/IR/Document/Content/Rectangle.php b/src/IR/Document/Content/Rectangle.php index 72cf644b..0fd2a918 100644 --- a/src/IR/Document/Content/Rectangle.php +++ b/src/IR/Document/Content/Rectangle.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content; +namespace Famoser\PdfGenerator\IR\Document\Content; -use PdfGenerator\IR\Document\Content\Base\BaseContent; -use PdfGenerator\IR\Document\Content\Common\Position; -use PdfGenerator\IR\Document\Content\Common\Size; -use PdfGenerator\IR\Document\Content\Rectangle\RectangleStyle; +use Famoser\PdfGenerator\IR\Document\Content\Base\BaseContent; +use Famoser\PdfGenerator\IR\Document\Content\Common\Position; +use Famoser\PdfGenerator\IR\Document\Content\Common\Size; +use Famoser\PdfGenerator\IR\Document\Content\Rectangle\RectangleStyle; readonly class Rectangle extends BaseContent { diff --git a/src/IR/Document/Content/Rectangle/RectangleStyle.php b/src/IR/Document/Content/Rectangle/RectangleStyle.php index 6256ac8d..d4fb6de8 100644 --- a/src/IR/Document/Content/Rectangle/RectangleStyle.php +++ b/src/IR/Document/Content/Rectangle/RectangleStyle.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content\Rectangle; +namespace Famoser\PdfGenerator\IR\Document\Content\Rectangle; -use PdfGenerator\IR\Document\Content\Common\Color; +use Famoser\PdfGenerator\IR\Document\Content\Common\Color; readonly class RectangleStyle { diff --git a/src/IR/Document/Content/Text.php b/src/IR/Document/Content/Text.php index de304079..87de8682 100644 --- a/src/IR/Document/Content/Text.php +++ b/src/IR/Document/Content/Text.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content; +namespace Famoser\PdfGenerator\IR\Document\Content; -use PdfGenerator\IR\Document\Content\Base\BaseContent; -use PdfGenerator\IR\Document\Content\Common\Position; -use PdfGenerator\IR\Document\Content\Text\TextStyle; +use Famoser\PdfGenerator\IR\Document\Content\Base\BaseContent; +use Famoser\PdfGenerator\IR\Document\Content\Common\Position; +use Famoser\PdfGenerator\IR\Document\Content\Text\TextStyle; readonly class Text extends BaseContent { diff --git a/src/IR/Document/Content/Text/Phrase.php b/src/IR/Document/Content/Text/Phrase.php index 0f71841c..0a4e234b 100644 --- a/src/IR/Document/Content/Text/Phrase.php +++ b/src/IR/Document/Content/Text/Phrase.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content\Text; +namespace Famoser\PdfGenerator\IR\Document\Content\Text; readonly class Phrase { diff --git a/src/IR/Document/Content/Text/TextStyle.php b/src/IR/Document/Content/Text/TextStyle.php index 4b63e571..a8a16f27 100644 --- a/src/IR/Document/Content/Text/TextStyle.php +++ b/src/IR/Document/Content/Text/TextStyle.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Content\Text; +namespace Famoser\PdfGenerator\IR\Document\Content\Text; -use PdfGenerator\IR\Document\Content\Common\Color; -use PdfGenerator\IR\Document\Resource\Font; +use Famoser\PdfGenerator\IR\Document\Content\Common\Color; +use Famoser\PdfGenerator\IR\Document\Resource\Font; readonly class TextStyle { diff --git a/src/IR/Document/ContentVisitor.php b/src/IR/Document/ContentVisitor.php index 13147e7b..b8668302 100644 --- a/src/IR/Document/ContentVisitor.php +++ b/src/IR/Document/ContentVisitor.php @@ -9,22 +9,22 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document; - -use PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; -use PdfGenerator\Backend\Structure\Document\Page\Content\ImageContent; -use PdfGenerator\Backend\Structure\Document\Page\Content\Paragraph\Phrase; -use PdfGenerator\Backend\Structure\Document\Page\Content\ParagraphContent; -use PdfGenerator\Backend\Structure\Document\Page\Content\RectangleContent; -use PdfGenerator\Backend\Structure\Document\Page\Content\TextContent; -use PdfGenerator\IR\Document\Content\Common\Position; -use PdfGenerator\IR\Document\Content\ContentVisitorInterface; -use PdfGenerator\IR\Document\Content\ImagePlacement; -use PdfGenerator\IR\Document\Content\Paragraph; -use PdfGenerator\IR\Document\Content\Rectangle; -use PdfGenerator\IR\Document\Content\Rectangle\RectangleStyle; -use PdfGenerator\IR\Document\Content\Text; -use PdfGenerator\IR\Document\Resource\PageResources; +namespace Famoser\PdfGenerator\IR\Document; + +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\Base\BaseContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\ImageContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\Paragraph\Phrase; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\ParagraphContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\RectangleContent; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\Content\TextContent; +use Famoser\PdfGenerator\IR\Document\Content\Common\Position; +use Famoser\PdfGenerator\IR\Document\Content\ContentVisitorInterface; +use Famoser\PdfGenerator\IR\Document\Content\ImagePlacement; +use Famoser\PdfGenerator\IR\Document\Content\Paragraph; +use Famoser\PdfGenerator\IR\Document\Content\Rectangle; +use Famoser\PdfGenerator\IR\Document\Content\Rectangle\RectangleStyle; +use Famoser\PdfGenerator\IR\Document\Content\Text; +use Famoser\PdfGenerator\IR\Document\Resource\PageResources; /** * @implements ContentVisitorInterface diff --git a/src/IR/Document/Page.php b/src/IR/Document/Page.php index 868c02a2..79bb1d9d 100644 --- a/src/IR/Document/Page.php +++ b/src/IR/Document/Page.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document; +namespace Famoser\PdfGenerator\IR\Document; -use PdfGenerator\Backend\Structure\Document\Page as BackendPage; -use PdfGenerator\IR\Document\Content\Base\BaseContent; -use PdfGenerator\IR\Document\Resource\DocumentResources; -use PdfGenerator\IR\Document\Resource\PageResources; +use Famoser\PdfGenerator\Backend\Structure\Document\Page as BackendPage; +use Famoser\PdfGenerator\IR\Document\Content\Base\BaseContent; +use Famoser\PdfGenerator\IR\Document\Resource\DocumentResources; +use Famoser\PdfGenerator\IR\Document\Resource\PageResources; class Page { diff --git a/src/IR/Document/Resource/DocumentResources.php b/src/IR/Document/Resource/DocumentResources.php index 7af39cb4..c6520183 100644 --- a/src/IR/Document/Resource/DocumentResources.php +++ b/src/IR/Document/Resource/DocumentResources.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource; +namespace Famoser\PdfGenerator\IR\Document\Resource; -use PdfGenerator\Backend\Structure\Document\Font as BackendFont; -use PdfGenerator\Backend\Structure\Document\Image as BackendImage; -use PdfGenerator\IR\Document\Base\BaseDocumentResource; -use PdfGenerator\IR\DocumentVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Font as BackendFont; +use Famoser\PdfGenerator\Backend\Structure\Document\Image as BackendImage; +use Famoser\PdfGenerator\IR\Document\Base\BaseDocumentResource; +use Famoser\PdfGenerator\IR\DocumentVisitor; class DocumentResources { diff --git a/src/IR/Document/Resource/Font.php b/src/IR/Document/Resource/Font.php index 9ed0a2f0..66f68476 100644 --- a/src/IR/Document/Resource/Font.php +++ b/src/IR/Document/Resource/Font.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource; +namespace Famoser\PdfGenerator\IR\Document\Resource; -use PdfGenerator\IR\Document\Base\BaseDocumentResource; -use PdfGenerator\IR\Document\Resource\Font\FontVisitor; +use Famoser\PdfGenerator\IR\Document\Base\BaseDocumentResource; +use Famoser\PdfGenerator\IR\Document\Resource\Font\FontVisitor; abstract readonly class Font extends BaseDocumentResource { diff --git a/src/IR/Document/Resource/Font/DefaultFont.php b/src/IR/Document/Resource/Font/DefaultFont.php index a71ed7e4..211a2a9e 100644 --- a/src/IR/Document/Resource/Font/DefaultFont.php +++ b/src/IR/Document/Resource/Font/DefaultFont.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource\Font; +namespace Famoser\PdfGenerator\IR\Document\Resource\Font; -use PdfGenerator\Backend\Structure\Document\Font\DefaultFont as BackendDefaultFont; -use PdfGenerator\IR\Document\Resource\Font; -use PdfGenerator\IR\Document\Resource\Font\Utils\DefaultFontSizeLookup; -use PdfGenerator\IR\DocumentVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Font\DefaultFont as BackendDefaultFont; +use Famoser\PdfGenerator\IR\Document\Resource\Font; +use Famoser\PdfGenerator\IR\Document\Resource\Font\Utils\DefaultFontSizeLookup; +use Famoser\PdfGenerator\IR\DocumentVisitor; readonly class DefaultFont extends Font { diff --git a/src/IR/Document/Resource/Font/EmbeddedFont.php b/src/IR/Document/Resource/Font/EmbeddedFont.php index 0e72e4db..742634ec 100644 --- a/src/IR/Document/Resource/Font/EmbeddedFont.php +++ b/src/IR/Document/Resource/Font/EmbeddedFont.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource\Font; +namespace Famoser\PdfGenerator\IR\Document\Resource\Font; -use PdfGenerator\Backend\Structure\Document\Font\EmbeddedFont as BackendEmbeddedFont; -use PdfGenerator\Font\IR\Parser; -use PdfGenerator\IR\Document\Resource\Font; -use PdfGenerator\IR\DocumentVisitor; +use Famoser\PdfGenerator\Backend\Structure\Document\Font\EmbeddedFont as BackendEmbeddedFont; +use Famoser\PdfGenerator\Font\IR\Parser; +use Famoser\PdfGenerator\IR\Document\Resource\Font; +use Famoser\PdfGenerator\IR\DocumentVisitor; readonly class EmbeddedFont extends Font { diff --git a/src/IR/Document/Resource/Font/FontVisitor.php b/src/IR/Document/Resource/Font/FontVisitor.php index db77c145..dadb126a 100644 --- a/src/IR/Document/Resource/Font/FontVisitor.php +++ b/src/IR/Document/Resource/Font/FontVisitor.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource\Font; +namespace Famoser\PdfGenerator\IR\Document\Resource\Font; /** * @template T diff --git a/src/IR/Document/Resource/Font/Utils/DefaultFontSizeLookup.php b/src/IR/Document/Resource/Font/Utils/DefaultFontSizeLookup.php index cc963ce3..25d9ae40 100644 --- a/src/IR/Document/Resource/Font/Utils/DefaultFontSizeLookup.php +++ b/src/IR/Document/Resource/Font/Utils/DefaultFontSizeLookup.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource\Font\Utils; +namespace Famoser\PdfGenerator\IR\Document\Resource\Font\Utils; class DefaultFontSizeLookup { diff --git a/src/IR/Document/Resource/Font/Utils/DefaultFontType1Mapping.php b/src/IR/Document/Resource/Font/Utils/DefaultFontType1Mapping.php index 12e9ef61..4cd3c699 100644 --- a/src/IR/Document/Resource/Font/Utils/DefaultFontType1Mapping.php +++ b/src/IR/Document/Resource/Font/Utils/DefaultFontType1Mapping.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource\Font\Utils; +namespace Famoser\PdfGenerator\IR\Document\Resource\Font\Utils; -use PdfGenerator\Backend\Catalog\Font\Type1; -use PdfGenerator\IR\Document\Resource\Font\DefaultFont; +use Famoser\PdfGenerator\Backend\Catalog\Font\Type1; +use Famoser\PdfGenerator\IR\Document\Resource\Font\DefaultFont; class DefaultFontType1Mapping { diff --git a/src/IR/Document/Resource/Image.php b/src/IR/Document/Resource/Image.php index 4bd40122..47e092ef 100644 --- a/src/IR/Document/Resource/Image.php +++ b/src/IR/Document/Resource/Image.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource; +namespace Famoser\PdfGenerator\IR\Document\Resource; -use PdfGenerator\IR\Document\Base\BaseDocumentResource; -use PdfGenerator\IR\DocumentVisitor; +use Famoser\PdfGenerator\IR\Document\Base\BaseDocumentResource; +use Famoser\PdfGenerator\IR\DocumentVisitor; readonly class Image extends BaseDocumentResource { diff --git a/src/IR/Document/Resource/PageResources.php b/src/IR/Document/Resource/PageResources.php index f1a1ceb3..fc88d0a1 100644 --- a/src/IR/Document/Resource/PageResources.php +++ b/src/IR/Document/Resource/PageResources.php @@ -9,16 +9,16 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource; - -use PdfGenerator\Backend\Structure\Document\Font as BackendFont; -use PdfGenerator\Backend\Structure\Document\Image as BackendImage; -use PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; -use PdfGenerator\Backend\Structure\Document\Page\StateCollections\DrawingState; -use PdfGenerator\Backend\Structure\Document\Page\StateCollections\WritingState; -use PdfGenerator\IR\Document\Resource\State\ColorStateRepository; -use PdfGenerator\IR\Document\Resource\State\GeneralGraphicStateRepository; -use PdfGenerator\IR\Document\Resource\State\TextStateRepository; +namespace Famoser\PdfGenerator\IR\Document\Resource; + +use Famoser\PdfGenerator\Backend\Structure\Document\Font as BackendFont; +use Famoser\PdfGenerator\Backend\Structure\Document\Image as BackendImage; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections\DrawingState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\StateCollections\WritingState; +use Famoser\PdfGenerator\IR\Document\Resource\State\ColorStateRepository; +use Famoser\PdfGenerator\IR\Document\Resource\State\GeneralGraphicStateRepository; +use Famoser\PdfGenerator\IR\Document\Resource\State\TextStateRepository; class PageResources { diff --git a/src/IR/Document/Resource/State/ColorStateRepository.php b/src/IR/Document/Resource/State/ColorStateRepository.php index 8768404b..f4cb1c86 100644 --- a/src/IR/Document/Resource/State/ColorStateRepository.php +++ b/src/IR/Document/Resource/State/ColorStateRepository.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource\State; +namespace Famoser\PdfGenerator\IR\Document\Resource\State; -use PdfGenerator\Backend\Structure\Document\Page\State\ColorState; -use PdfGenerator\IR\Document\Content\Common\Color; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\ColorState; +use Famoser\PdfGenerator\IR\Document\Content\Common\Color; class ColorStateRepository { diff --git a/src/IR/Document/Resource/State/GeneralGraphicStateRepository.php b/src/IR/Document/Resource/State/GeneralGraphicStateRepository.php index c4645230..031a4fc4 100644 --- a/src/IR/Document/Resource/State/GeneralGraphicStateRepository.php +++ b/src/IR/Document/Resource/State/GeneralGraphicStateRepository.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource\State; +namespace Famoser\PdfGenerator\IR\Document\Resource\State; -use PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\GeneralGraphicState; class GeneralGraphicStateRepository { diff --git a/src/IR/Document/Resource/State/TextStateRepository.php b/src/IR/Document/Resource/State/TextStateRepository.php index 78ba6060..627b1c7d 100644 --- a/src/IR/Document/Resource/State/TextStateRepository.php +++ b/src/IR/Document/Resource/State/TextStateRepository.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR\Document\Resource\State; +namespace Famoser\PdfGenerator\IR\Document\Resource\State; -use PdfGenerator\Backend\Structure\Document\Font; -use PdfGenerator\Backend\Structure\Document\Page\State\TextState; +use Famoser\PdfGenerator\Backend\Structure\Document\Font; +use Famoser\PdfGenerator\Backend\Structure\Document\Page\State\TextState; class TextStateRepository { diff --git a/src/IR/DocumentVisitor.php b/src/IR/DocumentVisitor.php index 41c89b31..4e348aa0 100644 --- a/src/IR/DocumentVisitor.php +++ b/src/IR/DocumentVisitor.php @@ -9,16 +9,16 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\IR; +namespace Famoser\PdfGenerator\IR; -use PdfGenerator\Backend\Structure\Document\Font\DefaultFont as BackendDefaultFont; -use PdfGenerator\Backend\Structure\Document\Font\EmbeddedFont as BackendEmbeddedFont; -use PdfGenerator\Backend\Structure\Document\Image as BackendImage; -use PdfGenerator\IR\Analysis\AnalysisResult; -use PdfGenerator\IR\Document\Resource\Font\DefaultFont; -use PdfGenerator\IR\Document\Resource\Font\EmbeddedFont; -use PdfGenerator\IR\Document\Resource\Font\Utils\DefaultFontType1Mapping; -use PdfGenerator\IR\Document\Resource\Image; +use Famoser\PdfGenerator\Backend\Structure\Document\Font\DefaultFont as BackendDefaultFont; +use Famoser\PdfGenerator\Backend\Structure\Document\Font\EmbeddedFont as BackendEmbeddedFont; +use Famoser\PdfGenerator\Backend\Structure\Document\Image as BackendImage; +use Famoser\PdfGenerator\IR\Analysis\AnalysisResult; +use Famoser\PdfGenerator\IR\Document\Resource\Font\DefaultFont; +use Famoser\PdfGenerator\IR\Document\Resource\Font\EmbeddedFont; +use Famoser\PdfGenerator\IR\Document\Resource\Font\Utils\DefaultFontType1Mapping; +use Famoser\PdfGenerator\IR\Document\Resource\Image; readonly class DocumentVisitor { diff --git a/src/Utils/LUDecomposition3By3.php b/src/Utils/LUDecomposition3By3.php index e795e569..466addf1 100644 --- a/src/Utils/LUDecomposition3By3.php +++ b/src/Utils/LUDecomposition3By3.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Utils; +namespace Famoser\PdfGenerator\Utils; class LUDecomposition3By3 { diff --git a/src/Utils/SingletonTrait.php b/src/Utils/SingletonTrait.php index deb5d02d..653fcf39 100644 --- a/src/Utils/SingletonTrait.php +++ b/src/Utils/SingletonTrait.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Utils; +namespace Famoser\PdfGenerator\Utils; trait SingletonTrait { diff --git a/src/Utils/TransformationMatrixCalculator.php b/src/Utils/TransformationMatrixCalculator.php index bc7da27b..8c5fdd96 100644 --- a/src/Utils/TransformationMatrixCalculator.php +++ b/src/Utils/TransformationMatrixCalculator.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Utils; +namespace Famoser\PdfGenerator\Utils; /** * Some algorithms in here are inspired by https://github.com/jorgecasas/php-ml diff --git a/tests/Integration/Font/Backend/FileWriterTest.php b/tests/Integration/Font/Backend/FileWriterTest.php index 472dc7ac..3e350339 100644 --- a/tests/Integration/Font/Backend/FileWriterTest.php +++ b/tests/Integration/Font/Backend/FileWriterTest.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Integration\Font\Backend; - -use PdfGenerator\Font\Backend\FileWriter; -use PdfGenerator\Font\IR\CharacterRepository; -use PdfGenerator\Font\IR\Optimizer; -use PdfGenerator\Font\IR\Parser; -use PdfGenerator\Font\IR\Structure\Font; -use PdfGenerator\Tests\Integration\Font\Frontend\FileReaderTest; +namespace Famoser\PdfGenerator\Tests\Integration\Font\Backend; + +use Famoser\PdfGenerator\Font\Backend\FileWriter; +use Famoser\PdfGenerator\Font\IR\CharacterRepository; +use Famoser\PdfGenerator\Font\IR\Optimizer; +use Famoser\PdfGenerator\Font\IR\Parser; +use Famoser\PdfGenerator\Font\IR\Structure\Font; +use Famoser\PdfGenerator\Tests\Integration\Font\Frontend\FileReaderTest; use PHPUnit\Framework\TestCase; class FileWriterTest extends TestCase diff --git a/tests/Integration/Font/Frontend/FileReaderTest.php b/tests/Integration/Font/Frontend/FileReaderTest.php index f9401d43..5c28b078 100644 --- a/tests/Integration/Font/Frontend/FileReaderTest.php +++ b/tests/Integration/Font/Frontend/FileReaderTest.php @@ -9,20 +9,20 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Integration\Font\Frontend; - -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format4; -use PdfGenerator\Font\Frontend\File\Table\CMap\FormatReader; -use PdfGenerator\Font\Frontend\File\Table\CMapTable; -use PdfGenerator\Font\Frontend\File\Table\GlyfTable; -use PdfGenerator\Font\Frontend\File\Table\HeadTable; -use PdfGenerator\Font\Frontend\File\Table\HHeaTable; -use PdfGenerator\Font\Frontend\File\Table\HMtxTable; -use PdfGenerator\Font\Frontend\File\Table\LocaTable; -use PdfGenerator\Font\Frontend\File\Table\MaxPTable; -use PdfGenerator\Font\Frontend\File\Table\NameTable; -use PdfGenerator\Font\Frontend\FileReader; -use PdfGenerator\Font\Frontend\StreamReader; +namespace Famoser\PdfGenerator\Tests\Integration\Font\Frontend; + +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format4; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\FormatReader; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMapTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\GlyfTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HeadTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HHeaTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\HMtxTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\LocaTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\MaxPTable; +use Famoser\PdfGenerator\Font\Frontend\File\Table\NameTable; +use Famoser\PdfGenerator\Font\Frontend\FileReader; +use Famoser\PdfGenerator\Font\Frontend\StreamReader; use PHPUnit\Framework\TestCase; class FileReaderTest extends TestCase diff --git a/tests/Integration/Font/IR/ParserTest.php b/tests/Integration/Font/IR/ParserTest.php index 817c4a46..aa5d8e01 100644 --- a/tests/Integration/Font/IR/ParserTest.php +++ b/tests/Integration/Font/IR/ParserTest.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Integration\Font\IR; +namespace Famoser\PdfGenerator\Tests\Integration\Font\IR; -use PdfGenerator\Font\IR\CharacterRepository; -use PdfGenerator\Font\IR\Parser; -use PdfGenerator\Font\IR\Structure\Font; -use PdfGenerator\Tests\Integration\Font\Frontend\FileReaderTest; +use Famoser\PdfGenerator\Font\IR\CharacterRepository; +use Famoser\PdfGenerator\Font\IR\Parser; +use Famoser\PdfGenerator\Font\IR\Structure\Font; +use Famoser\PdfGenerator\Tests\Integration\Font\Frontend\FileReaderTest; use PHPUnit\Framework\TestCase; class ParserTest extends TestCase diff --git a/tests/Integration/Frontend/LinearDocument/ContentTestCase.php b/tests/Integration/Frontend/LinearDocument/ContentTestCase.php index d3afa762..2d08e2cf 100644 --- a/tests/Integration/Frontend/LinearDocument/ContentTestCase.php +++ b/tests/Integration/Frontend/LinearDocument/ContentTestCase.php @@ -9,21 +9,21 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Integration\Frontend\LinearDocument; - -use PdfGenerator\Frontend\Content\AbstractContent; -use PdfGenerator\Frontend\Content\ImagePlacement; -use PdfGenerator\Frontend\Content\Paragraph; -use PdfGenerator\Frontend\Content\Rectangle; -use PdfGenerator\Frontend\Content\Style\DrawingStyle; -use PdfGenerator\Frontend\Content\Style\TextStyle; -use PdfGenerator\Frontend\Layout\ContentBlock; -use PdfGenerator\Frontend\Layout\Style\BlockStyle; -use PdfGenerator\Frontend\LinearDocument; -use PdfGenerator\Frontend\Resource\Font; -use PdfGenerator\Frontend\Resource\Image; -use PdfGenerator\IR\Document\Content\Common\Color; -use PdfGenerator\Tests\Resources\ResourcesProvider; +namespace Famoser\PdfGenerator\Tests\Integration\Frontend\LinearDocument; + +use Famoser\PdfGenerator\Frontend\Content\AbstractContent; +use Famoser\PdfGenerator\Frontend\Content\ImagePlacement; +use Famoser\PdfGenerator\Frontend\Content\Paragraph; +use Famoser\PdfGenerator\Frontend\Content\Rectangle; +use Famoser\PdfGenerator\Frontend\Content\Style\DrawingStyle; +use Famoser\PdfGenerator\Frontend\Content\Style\TextStyle; +use Famoser\PdfGenerator\Frontend\Layout\ContentBlock; +use Famoser\PdfGenerator\Frontend\Layout\Style\BlockStyle; +use Famoser\PdfGenerator\Frontend\LinearDocument; +use Famoser\PdfGenerator\Frontend\Resource\Font; +use Famoser\PdfGenerator\Frontend\Resource\Image; +use Famoser\PdfGenerator\IR\Document\Content\Common\Color; +use Famoser\PdfGenerator\Tests\Resources\ResourcesProvider; class ContentTestCase extends LinearDocumentTestCase { diff --git a/tests/Integration/Frontend/LinearDocument/FlowTestCase.php b/tests/Integration/Frontend/LinearDocument/FlowTestCase.php index a5e1f163..2ca8203e 100644 --- a/tests/Integration/Frontend/LinearDocument/FlowTestCase.php +++ b/tests/Integration/Frontend/LinearDocument/FlowTestCase.php @@ -9,17 +9,17 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Integration\Frontend\LinearDocument; +namespace Famoser\PdfGenerator\Tests\Integration\Frontend\LinearDocument; -use PdfGenerator\Frontend\Content\Paragraph; -use PdfGenerator\Frontend\Content\Rectangle; -use PdfGenerator\Frontend\Content\Style\DrawingStyle; -use PdfGenerator\Frontend\Content\Style\TextStyle; -use PdfGenerator\Frontend\Layout\ContentBlock; -use PdfGenerator\Frontend\Layout\Flow; -use PdfGenerator\Frontend\Layout\Style\FlowDirection; -use PdfGenerator\Frontend\LinearDocument; -use PdfGenerator\Frontend\Resource\Font; +use Famoser\PdfGenerator\Frontend\Content\Paragraph; +use Famoser\PdfGenerator\Frontend\Content\Rectangle; +use Famoser\PdfGenerator\Frontend\Content\Style\DrawingStyle; +use Famoser\PdfGenerator\Frontend\Content\Style\TextStyle; +use Famoser\PdfGenerator\Frontend\Layout\ContentBlock; +use Famoser\PdfGenerator\Frontend\Layout\Flow; +use Famoser\PdfGenerator\Frontend\Layout\Style\FlowDirection; +use Famoser\PdfGenerator\Frontend\LinearDocument; +use Famoser\PdfGenerator\Frontend\Resource\Font; class FlowTestCase extends LinearDocumentTestCase { diff --git a/tests/Integration/Frontend/LinearDocument/GridTestCase.php b/tests/Integration/Frontend/LinearDocument/GridTestCase.php index 97ecf57d..7ba5f49f 100644 --- a/tests/Integration/Frontend/LinearDocument/GridTestCase.php +++ b/tests/Integration/Frontend/LinearDocument/GridTestCase.php @@ -9,21 +9,21 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Integration\Frontend\LinearDocument; - -use PdfGenerator\Frontend\Content\Paragraph; -use PdfGenerator\Frontend\Content\Rectangle; -use PdfGenerator\Frontend\Content\Style\DrawingStyle; -use PdfGenerator\Frontend\Content\Style\TextStyle; -use PdfGenerator\Frontend\Layout\AbstractBlock; -use PdfGenerator\Frontend\Layout\ContentBlock; -use PdfGenerator\Frontend\Layout\Grid; -use PdfGenerator\Frontend\Layout\Parts\Row; -use PdfGenerator\Frontend\Layout\Style\BlockStyle; -use PdfGenerator\Frontend\Layout\Style\ColumnSize; -use PdfGenerator\Frontend\LinearDocument; -use PdfGenerator\Frontend\Resource\Font; -use PdfGenerator\IR\Document\Content\Common\Color; +namespace Famoser\PdfGenerator\Tests\Integration\Frontend\LinearDocument; + +use Famoser\PdfGenerator\Frontend\Content\Paragraph; +use Famoser\PdfGenerator\Frontend\Content\Rectangle; +use Famoser\PdfGenerator\Frontend\Content\Style\DrawingStyle; +use Famoser\PdfGenerator\Frontend\Content\Style\TextStyle; +use Famoser\PdfGenerator\Frontend\Layout\AbstractBlock; +use Famoser\PdfGenerator\Frontend\Layout\ContentBlock; +use Famoser\PdfGenerator\Frontend\Layout\Grid; +use Famoser\PdfGenerator\Frontend\Layout\Parts\Row; +use Famoser\PdfGenerator\Frontend\Layout\Style\BlockStyle; +use Famoser\PdfGenerator\Frontend\Layout\Style\ColumnSize; +use Famoser\PdfGenerator\Frontend\LinearDocument; +use Famoser\PdfGenerator\Frontend\Resource\Font; +use Famoser\PdfGenerator\IR\Document\Content\Common\Color; class GridTestCase extends LinearDocumentTestCase { diff --git a/tests/Integration/Frontend/LinearDocument/LinearDocumentTestCase.php b/tests/Integration/Frontend/LinearDocument/LinearDocumentTestCase.php index 3368c866..18795dd5 100644 --- a/tests/Integration/Frontend/LinearDocument/LinearDocumentTestCase.php +++ b/tests/Integration/Frontend/LinearDocument/LinearDocumentTestCase.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Integration\Frontend\LinearDocument; +namespace Famoser\PdfGenerator\Tests\Integration\Frontend\LinearDocument; -use PdfGenerator\Frontend\LinearDocument; +use Famoser\PdfGenerator\Frontend\LinearDocument; use PHPUnit\Framework\TestCase; abstract class LinearDocumentTestCase extends TestCase diff --git a/tests/Integration/Frontend/LinearDocument/TableTestCase.php b/tests/Integration/Frontend/LinearDocument/TableTestCase.php index 709f1827..2607439b 100644 --- a/tests/Integration/Frontend/LinearDocument/TableTestCase.php +++ b/tests/Integration/Frontend/LinearDocument/TableTestCase.php @@ -9,18 +9,18 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Integration\Frontend\LinearDocument; +namespace Famoser\PdfGenerator\Tests\Integration\Frontend\LinearDocument; -use PdfGenerator\Frontend\Content\Paragraph; -use PdfGenerator\Frontend\Content\Style\TextStyle; -use PdfGenerator\Frontend\Layout\AbstractBlock; -use PdfGenerator\Frontend\Layout\Parts\Row; -use PdfGenerator\Frontend\Layout\Style\BlockStyle; -use PdfGenerator\Frontend\Layout\Style\ColumnSize; -use PdfGenerator\Frontend\Layout\Table; -use PdfGenerator\Frontend\LinearDocument; -use PdfGenerator\Frontend\Resource\Font; -use PdfGenerator\IR\Document\Content\Common\Color; +use Famoser\PdfGenerator\Frontend\Content\Paragraph; +use Famoser\PdfGenerator\Frontend\Content\Style\TextStyle; +use Famoser\PdfGenerator\Frontend\Layout\AbstractBlock; +use Famoser\PdfGenerator\Frontend\Layout\Parts\Row; +use Famoser\PdfGenerator\Frontend\Layout\Style\BlockStyle; +use Famoser\PdfGenerator\Frontend\Layout\Style\ColumnSize; +use Famoser\PdfGenerator\Frontend\Layout\Table; +use Famoser\PdfGenerator\Frontend\LinearDocument; +use Famoser\PdfGenerator\Frontend\Resource\Font; +use Famoser\PdfGenerator\IR\Document\Content\Common\Color; class TableTestCase extends LinearDocumentTestCase { diff --git a/tests/Integration/IR/PrinterTest.php b/tests/Integration/IR/PrinterTest.php index a98ba6d3..559e1ce0 100644 --- a/tests/Integration/IR/PrinterTest.php +++ b/tests/Integration/IR/PrinterTest.php @@ -9,15 +9,15 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Integration\IR; +namespace Famoser\PdfGenerator\Tests\Integration\IR; -use PdfGenerator\IR\Document; -use PdfGenerator\IR\Document\Content\Common\Position; -use PdfGenerator\IR\Document\Content\Text; -use PdfGenerator\IR\Document\Content\Text\TextStyle; -use PdfGenerator\IR\Document\Page; -use PdfGenerator\IR\Document\Resource\Font\DefaultFont; -use PdfGenerator\Tests\Resources\ResourcesProvider; +use Famoser\PdfGenerator\IR\Document; +use Famoser\PdfGenerator\IR\Document\Content\Common\Position; +use Famoser\PdfGenerator\IR\Document\Content\Text; +use Famoser\PdfGenerator\IR\Document\Content\Text\TextStyle; +use Famoser\PdfGenerator\IR\Document\Page; +use Famoser\PdfGenerator\IR\Document\Resource\Font\DefaultFont; +use Famoser\PdfGenerator\Tests\Resources\ResourcesProvider; use PHPUnit\Framework\TestCase; class PrinterTest extends TestCase diff --git a/tests/Resources/ResourcesProvider.php b/tests/Resources/ResourcesProvider.php index fd35a0c1..4c97cc8a 100644 --- a/tests/Resources/ResourcesProvider.php +++ b/tests/Resources/ResourcesProvider.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Resources; +namespace Famoser\PdfGenerator\Tests\Resources; class ResourcesProvider { diff --git a/tests/Unit/Font/Backend/StreamWriterTest.php b/tests/Unit/Font/Backend/StreamWriterTest.php index 2a0c5649..2ed4860d 100644 --- a/tests/Unit/Font/Backend/StreamWriterTest.php +++ b/tests/Unit/Font/Backend/StreamWriterTest.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Unit\Font\Backend; +namespace Famoser\PdfGenerator\Tests\Unit\Font\Backend; -use PdfGenerator\Font\Backend\StreamWriter; -use PdfGenerator\Font\Frontend\StreamReader; +use Famoser\PdfGenerator\Font\Backend\StreamWriter; +use Famoser\PdfGenerator\Font\Frontend\StreamReader; use PHPUnit\Framework\TestCase; class StreamWriterTest extends TestCase diff --git a/tests/Unit/Font/Frontend/StreamReaderTest.php b/tests/Unit/Font/Frontend/StreamReaderTest.php index d3b4c119..25596434 100644 --- a/tests/Unit/Font/Frontend/StreamReaderTest.php +++ b/tests/Unit/Font/Frontend/StreamReaderTest.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Unit\Font\Frontend; +namespace Famoser\PdfGenerator\Tests\Unit\Font\Frontend; -use PdfGenerator\Font\Frontend\StreamReader; +use Famoser\PdfGenerator\Font\Frontend\StreamReader; use PHPUnit\Framework\TestCase; class StreamReaderTest extends TestCase diff --git a/tests/Unit/Font/IR/Utils/CMap/GlyphIndexFormatVisitorTest.php b/tests/Unit/Font/IR/Utils/CMap/GlyphIndexFormatVisitorTest.php index 32b8e5d9..fcdc2d7e 100644 --- a/tests/Unit/Font/IR/Utils/CMap/GlyphIndexFormatVisitorTest.php +++ b/tests/Unit/Font/IR/Utils/CMap/GlyphIndexFormatVisitorTest.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Unit\Font\IR\Utils\CMap; +namespace Famoser\PdfGenerator\Tests\Unit\Font\IR\Utils\CMap; -use PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format4; -use PdfGenerator\Font\IR\Utils\CMap\GlyphIndexFormatVisitor; +use Famoser\PdfGenerator\Font\Frontend\File\Table\CMap\Format\Format4; +use Famoser\PdfGenerator\Font\IR\Utils\CMap\GlyphIndexFormatVisitor; use PHPUnit\Framework\TestCase; class GlyphIndexFormatVisitorTest extends TestCase diff --git a/tests/Unit/Font/Resources/GlyphNameMapping/FactoryTest.php b/tests/Unit/Font/Resources/GlyphNameMapping/FactoryTest.php index 50b91330..f5cb3a1c 100644 --- a/tests/Unit/Font/Resources/GlyphNameMapping/FactoryTest.php +++ b/tests/Unit/Font/Resources/GlyphNameMapping/FactoryTest.php @@ -9,9 +9,9 @@ * file that was distributed with this source code. */ -namespace PdfGenerator\Tests\Unit\Font\Resources\GlyphNameMapping; +namespace Famoser\PdfGenerator\Tests\Unit\Font\Resources\GlyphNameMapping; -use PdfGenerator\Font\Resources\GlyphNameMapping\Factory; +use Famoser\PdfGenerator\Font\Resources\GlyphNameMapping\Factory; use PHPUnit\Framework\TestCase; class FactoryTest extends TestCase