Skip to content

Commit aff30de

Browse files
committed
fix namespaces
1 parent a386f3d commit aff30de

16 files changed

Lines changed: 37 additions & 37 deletions

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"autoload": {
1818
"psr-4": {
19-
"Devimteam\\Component\\RpcServer\\": "src/"
19+
"Devim\\Component\\RpcServer\\": "src/"
2020
}
2121
}
2222
}

src/AbstractCRUDRpcService.php

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

3-
namespace Devimteam\Component\RpcServer;
3+
namespace Devim\Component\RpcServer;
44

55
use Doctrine\ORM\EntityManagerInterface;
66
use Doctrine\ORM\Query;

src/Exception/RpcControllerMethodNotFoundException.php

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

3-
namespace Devimteam\Component\RpcServer\Exception;
3+
namespace Devim\Component\RpcServer\Exception;
44

55
/**
66
* Class RpcControllerMethodNotFoundException.

src/Exception/RpcException.php

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

3-
namespace Devimteam\Component\RpcServer\Exception;
3+
namespace Devim\Component\RpcServer\Exception;
44

55
use Exception;
66

src/Exception/RpcInternalErrorException.php

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

3-
namespace Devimteam\Component\RpcServer\Exception;
3+
namespace Devim\Component\RpcServer\Exception;
44

55
/**
66
* Class RpcInternalErrorException.

src/Exception/RpcInvalidParamsException.php

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

3-
namespace Devimteam\Component\RpcServer\Exception;
3+
namespace Devim\Component\RpcServer\Exception;
44

55
/**
66
* Class RpcInvalidParamsException.

src/Exception/RpcInvalidRequestException.php

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

3-
namespace Devimteam\Component\RpcServer\Exception;
3+
namespace Devim\Component\RpcServer\Exception;
44

55
/**
66
* Class RpcInvalidRequestException.

src/Exception/RpcMethodNotFoundException.php

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

3-
namespace Devimteam\Component\RpcServer\Exception;
3+
namespace Devim\Component\RpcServer\Exception;
44

55
/**
66
* Class RpcMethodNotFoundException.

src/Exception/RpcParseException.php

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

3-
namespace Devimteam\Component\RpcServer\Exception;
3+
namespace Devim\Component\RpcServer\Exception;
44

55
/**
66
* Class RpcParseException

src/Exception/RpcServiceExistsException.php

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

3-
namespace Devimteam\Component\RpcServer\Exception;
3+
namespace Devim\Component\RpcServer\Exception;
44

55
/**
66
* Class RpcControllerExistsException.

0 commit comments

Comments
 (0)