Skip to content

Commit 4094c66

Browse files
committed
Change namespace.
1 parent 5ec0ed4 commit 4094c66

8 files changed

+14
-14
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"autoload": {
2828
"psr-4": {
29-
"Proj4\\": "src/"
29+
"Academe\\Proj\\": "src/"
3030
}
3131
}
3232
}

src/AbstractPoint.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php namespace Proj4;
1+
<?php namespace Academe\Proj;
22

33
/**
44
* Methods and defines common to all (or most) points.

src/Datum.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php namespace Proj4;
1+
<?php namespace Academe\Proj;
22

33
/**
44
* Defines a geodetic ellipsoidal datum.
@@ -10,7 +10,7 @@
1010
*/
1111

1212
use Exception;
13-
use Proj4\Point\Geocentric;
13+
use Academe\Proj\Point\Geocentric;
1414

1515
class Datum
1616
{

src/Ellipsoid.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php namespace Proj4;
1+
<?php namespace Academe\Proj;
22

33
/**
44
* Defines an ellisoid.

src/Params.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php namespace Proj4;
1+
<?php namespace Academe\Proj;
22

33
/**
44
* Provide a library for lists of named parameters.

src/Point/Geocentric.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php namespace Proj4\Point;
1+
<?php namespace Academe\Proj\Point;
22

33
/**
44
* Defines a geocentric point.
@@ -18,8 +18,8 @@
1818

1919
use Exception;
2020

21-
use Proj4\Datum;
22-
use Proj4\AbstractPoint;
21+
use Academe\Proj\Datum;
22+
use Academe\Proj\AbstractPoint;
2323

2424
class Geocentric extends AbstractPoint
2525
{

src/Point/Geodetic.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php namespace Proj4\Point;
1+
<?php namespace Academe\Proj\Point;
22

33
/**
44
* Defines a geodetic point.
@@ -10,8 +10,8 @@
1010

1111
use Exception;
1212

13-
use Proj4\Datum;
14-
use Proj4\AbstractPoint;
13+
use Academe\Proj\Datum;
14+
use Academe\Proj\AbstractPoint;
1515

1616
class Geodetic extends AbstractPoint
1717
{

src/PointInterface.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<?php namespace Proj4;
1+
<?php namespace Academe\Proj;
22

33
/**
44
* Interface for a geographic point.
55
*/
66

77
use Exception;
88

9-
use Proj4\Point\Geocentric;
9+
use Academe\Proj\Point\Geocentric;
1010

1111
interface PointInterface
1212
{

0 commit comments

Comments
 (0)