Skip to content

Commit

Permalink
Add license and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-stoehr committed Oct 26, 2023
1 parent 0488d7a commit 68e0099
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 2 deletions.
10 changes: 10 additions & 0 deletions Tests/Unit/Format/AltoTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/**
* (c) Kitodo. Key to digital objects e.V. <[email protected]>
*
* This file is part of the Kitodo and TYPO3 projects.
*
* @license GNU General Public License version 3 or later.
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/

namespace Kitodo\Dlf\Tests\Unit\Format;

use Kitodo\Dlf\Format\Alto;
Expand Down
10 changes: 10 additions & 0 deletions Tests/Unit/Format/AudioVideoMDTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/**
* (c) Kitodo. Key to digital objects e.V. <[email protected]>
*
* This file is part of the Kitodo and TYPO3 projects.
*
* @license GNU General Public License version 3 or later.
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/

namespace Kitodo\Dlf\Tests\Unit\Format;

use Kitodo\Dlf\Format\AudioVideoMD;
Expand Down
14 changes: 12 additions & 2 deletions Tests/Unit/Format/ModsTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/**
* (c) Kitodo. Key to digital objects e.V. <[email protected]>
*
* This file is part of the Kitodo and TYPO3 projects.
*
* @license GNU General Public License version 3 or later.
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/

namespace Kitodo\Dlf\Tests\Unit\Format;

use Kitodo\Dlf\Format\Mods;
Expand Down Expand Up @@ -150,7 +160,7 @@ public function extractYears(): void
*/
public function extractPlacesWithElectronicEdInside(): void
{
$xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectonicEd.xml');
$xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml');
$mods = new Mods();

$mods->extractMetadata($xml, $this->metadata, false);
Expand Down Expand Up @@ -179,7 +189,7 @@ public function extractPlacesWithElectronicEdInside(): void
*/
public function extractYearsWithElectronicEdInside(): void
{
$xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectonicEd.xml');
$xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml');
$mods = new Mods();

$mods->extractMetadata($xml, $this->metadata, false);
Expand Down
10 changes: 10 additions & 0 deletions Tests/Unit/Format/TeiHeaderTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/**
* (c) Kitodo. Key to digital objects e.V. <[email protected]>
*
* This file is part of the Kitodo and TYPO3 projects.
*
* @license GNU General Public License version 3 or later.
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/

namespace Kitodo\Dlf\Tests\Unit\Format;

use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
Expand Down

0 comments on commit 68e0099

Please sign in to comment.