Skip to content

Commit

Permalink
#23 namespaces fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
1stthomas committed Aug 11, 2020
1 parent d08c2c7 commit a317e0b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
<?php

namespace Ht7\Base\Utility\Importers\Files;
namespace Ht7\Base\Utility\Importers;

use \Ht7\Base\Utility\Importers\Importable;

/**
* Description of Importer
*
* @author Thomas Pluess
*/
abstract class AbstractImporter
abstract class AbstractImporter implements Importable
{

protected $items;
Expand Down
2 changes: 1 addition & 1 deletion src/Utility/Importers/Files/ArrayImporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Ht7\Base\Utility\Importers\Files;

use \Ht7\Base\Utility\Importers\Files\AbstractImporter;
use \Ht7\Base\Utility\Importers\AbstractImporter;

/**
* Description of Importer
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ht7\Base\Utility\Importers\Files;
namespace Ht7\Base\Utility\Importers;

/**
*
Expand Down

0 comments on commit a317e0b

Please sign in to comment.