Skip to content

Commit 1d6c4e2

Browse files
committed
Adjust namespace
1 parent dc397d6 commit 1d6c4e2

10 files changed

+10
-10
lines changed

src/AdjacencyMatrix.php

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

3-
namespace Fhaculty\Graph\Loader;
3+
namespace Graphp\Plaintext;
44

55
use Fhaculty\Graph\Exception\UnexpectedValueException;
66
use Fhaculty\Graph\Graph;

src/Base.php

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

3-
namespace Fhaculty\Graph\Loader;
3+
namespace Graphp\Plaintext;
44

55
abstract class Base
66
{

src/CompleteGraph.php

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

3-
namespace Fhaculty\Graph\Loader;
3+
namespace Graphp\Plaintext;
44

55
use Fhaculty\Graph\Graph;
66

src/EdgeList.php

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

3-
namespace Fhaculty\Graph\Loader;
3+
namespace Graphp\Plaintext;
44

55
use Fhaculty\Graph\Graph;
66

src/EdgeListBipartit.php

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

3-
namespace Fhaculty\Graph\Loader;
3+
namespace Graphp\Plaintext;
44

55
use Fhaculty\Graph\Exception\UnexpectedValueException;
66

src/EdgeListWeighted.php

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

3-
namespace Fhaculty\Graph\Loader;
3+
namespace Graphp\Plaintext;
44

55
use Fhaculty\Graph\Graph;
66
use Fhaculty\Graph\Edge\Base as Edge;

src/EdgeListWithCapacity.php

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

3-
namespace Fhaculty\Graph\Loader;
3+
namespace Graphp\Plaintext;
44

55
use Fhaculty\Graph\Graph;
66

src/EdgeListWithWeightedCapacityAndBalance.php

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

3-
namespace Fhaculty\Graph\Loader;
3+
namespace Graphp\Plaintext;
44

55
use Fhaculty\Graph\Graph;
66

src/File.php

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

3-
namespace Fhaculty\Graph\Loader;
3+
namespace Graphp\Plaintext;
44

55
use Fhaculty\Graph\Exception\InvalidArgumentException;
66
use Fhaculty\Graph\Graph;

tests/CompleteGraphTest.php

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

33
use Fhaculty\Graph\Graph;
4-
use Fhaculty\Graph\Loader\CompleteGraph;
4+
use Graphp\Plaintext\CompleteGraph;
55

66
class CompleteGraphTest extends TestCase
77
{

0 commit comments

Comments
 (0)