Skip to content

Commit 36b8c62

Browse files
author
Wazabii
committed
Name changes
1 parent 0ba3161 commit 36b8c62

File tree

13 files changed

+30
-30
lines changed

13 files changed

+30
-30
lines changed

DynamicDataAbstract.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

33
/**
4-
* @Package: PHPFuse Dynamic data abstraction Class
4+
* @Package: MaplePHP Dynamic data abstraction Class
55
* @Author: Daniel Ronkainen
66
* @Licence: The MIT License (MIT), Copyright © Daniel Ronkainen
77
Don't delete this comment, its part of the license.
88
*/
99

10-
namespace PHPFuse\DTO;
10+
namespace MaplePHP\DTO;
1111

1212
abstract class DynamicDataAbstract
1313
{

Format/Arr.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

33
/**
4-
* @Package: PHPFuse Format array
4+
* @Package: MaplePHP Format array
55
* @Author: Daniel Ronkainen
66
* @Licence: The MIT License (MIT), Copyright © Daniel Ronkainen
77
Don't delete this comment, its part of the license.
88
* @Version: 1.0.0
99
*/
1010

11-
namespace PHPFuse\DTO\Format;
11+
namespace MaplePHP\DTO\Format;
1212

1313
final class Arr extends FormatAbstract implements FormatInterface
1414
{

Format/DateTime.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

33
/**
4-
* @Package: PHPFuse Format date class with translations
4+
* @Package: MaplePHP Format date class with translations
55
* @Author: Daniel Ronkainen
66
* @Licence: The MIT License (MIT), Copyright © Daniel Ronkainen
77
Don't delete this comment, its part of the license.
88
* @Version: 1.0.0
99
*/
1010

11-
namespace PHPFuse\DTO\Format;
11+
namespace MaplePHP\DTO\Format;
1212

1313
use DateTime as MainDateTime;
1414
use DateTimeZone;

Format/Dom.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<?php
22

33
/**
4-
* @Package: PHPFuse Format string
4+
* @Package: MaplePHP Format string
55
* @Author: Daniel Ronkainen
66
* @Licence: The MIT License (MIT), Copyright © Daniel Ronkainen
77
Don't delete this comment, its part of the license.
88
*/
99

10-
namespace PHPFuse\DTO\Format;
10+
namespace MaplePHP\DTO\Format;
1111

12-
use PHPFuse\Output\Dom\Document;
13-
use PHPFuse\DTO\Format\FormatInterface;
12+
use MaplePHP\Output\Dom\Document;
13+
use MaplePHP\DTO\Format\FormatInterface;
1414
use InvalidArgumentException;
1515

1616
final class Dom extends FormatAbstract

Format/Encode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHPFuse\DTO\Format;
3+
namespace MaplePHP\DTO\Format;
44

55
final class Encode extends FormatAbstract implements FormatInterface
66
{

Format/FormatAbstract.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

33
/**
4-
* @Package: PHPFuse Dynamic data abstraction Class
4+
* @Package: MaplePHP Dynamic data abstraction Class
55
* @Author: Daniel Ronkainen
66
* @Licence: The MIT License (MIT), Copyright © Daniel Ronkainen
77
Don't delete this comment, its part of the license.
88
*/
99

10-
namespace PHPFuse\DTO\Format;
10+
namespace MaplePHP\DTO\Format;
1111

1212
abstract class FormatAbstract
1313
{

Format/FormatInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

33
/**
4-
* @Package: PHPFuse Format Abstraction Class
4+
* @Package: MaplePHP Format Abstraction Class
55
* @Author: Daniel Ronkainen
66
* @Licence: The MIT License (MIT), Copyright © Daniel Ronkainen
77
Don't delete this comment, its part of the license.
88
* @Version: 1.0.0
99
*/
1010

11-
namespace PHPFuse\DTO\Format;
11+
namespace MaplePHP\DTO\Format;
1212

1313
interface FormatInterface
1414
{

Format/Local.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

33
/**
4-
* @Package: PHPFuse Format array
4+
* @Package: MaplePHP Format array
55
* @Author: Daniel Ronkainen
66
* @Licence: The MIT License (MIT), Copyright © Daniel Ronkainen
77
Don't delete this comment, its part of the license.
88
* @Version: 1.0.0
99
*/
1010

11-
namespace PHPFuse\DTO\Format;
11+
namespace MaplePHP\DTO\Format;
1212

1313
use Exception;
1414

Format/Num.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22
/**
33
* DEPRECATED
4-
* @Package: PHPFuse Format numbers
4+
* @Package: MaplePHP Format numbers
55
* @Author: Daniel Ronkainen
66
* @Licence: The MIT License (MIT), Copyright © Daniel Ronkainen
77
Don't delete this comment, its part of the license.
88
* @Version: 1.0.0
99
*/
1010

11-
namespace PHPFuse\DTO\Format;
11+
namespace MaplePHP\DTO\Format;
1212

1313
final class Num extends FormatAbstract implements FormatInterface
1414
{

Format/Str.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

33
/**
4-
* @Package: PHPFuse Format string
4+
* @Package: MaplePHP Format string
55
* @Author: Daniel Ronkainen
66
* @Licence: The MIT License (MIT), Copyright © Daniel Ronkainen
77
Don't delete this comment, its part of the license.
88
*/
99

10-
namespace PHPFuse\DTO\Format;
10+
namespace MaplePHP\DTO\Format;
1111

1212
use InvalidArgumentException;
1313

0 commit comments

Comments
 (0)