summaryrefslogtreecommitdiff
path: root/php/src
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2017-05-19 18:54:14 -0400
committerBernard Normier <bernard@zeroc.com>2017-05-19 18:54:14 -0400
commit47f53dcf02cdecef3959f61e9410009962cd798b (patch)
treed63091574ff20f90dfead5da94e6b31f62e96113 /php/src
parentFixed typo (diff)
downloadice-47f53dcf02cdecef3959f61e9410009962cd798b.tar.bz2
ice-47f53dcf02cdecef3959f61e9410009962cd798b.tar.xz
ice-47f53dcf02cdecef3959f61e9410009962cd798b.zip
Replaced virtual public by public virtual
Diffstat (limited to 'php/src')
-rw-r--r--php/src/php5/Operation.cpp6
-rw-r--r--php/src/php7/Operation.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/php/src/php5/Operation.cpp b/php/src/php5/Operation.cpp
index ebbf863dbd5..abe19021e27 100644
--- a/php/src/php5/Operation.cpp
+++ b/php/src/php5/Operation.cpp
@@ -97,7 +97,7 @@ typedef IceUtil::Handle<OperationI> OperationIPtr;
//
// The base class for client-side invocations.
//
-class Invocation : virtual public IceUtil::Shared
+class Invocation : public virtual IceUtil::Shared
{
public:
@@ -119,7 +119,7 @@ typedef IceUtil::Handle<Invocation> InvocationPtr;
// TypedInvocation uses the information in the given operation to validate, marshal, and unmarshal
// parameters and exceptions.
//
-class TypedInvocation : virtual public Invocation
+class TypedInvocation : public virtual Invocation
{
public:
@@ -139,7 +139,7 @@ protected:
//
// A synchronous typed invocation.
//
-class SyncTypedInvocation : virtual public TypedInvocation
+class SyncTypedInvocation : public virtual TypedInvocation
{
public:
diff --git a/php/src/php7/Operation.cpp b/php/src/php7/Operation.cpp
index 6bc99e50c1a..8bd77d66cb1 100644
--- a/php/src/php7/Operation.cpp
+++ b/php/src/php7/Operation.cpp
@@ -96,7 +96,7 @@ typedef IceUtil::Handle<OperationI> OperationIPtr;
//
// The base class for client-side invocations.
//
-class Invocation : virtual public IceUtil::Shared
+class Invocation : public virtual IceUtil::Shared
{
public:
@@ -115,7 +115,7 @@ typedef IceUtil::Handle<Invocation> InvocationPtr;
// TypedInvocation uses the information in the given operation to validate, marshal, and unmarshal
// parameters and exceptions.
//
-class TypedInvocation : virtual public Invocation
+class TypedInvocation : public virtual Invocation
{
public:
@@ -135,7 +135,7 @@ protected:
//
// A synchronous typed invocation.
//
-class SyncTypedInvocation : virtual public TypedInvocation
+class SyncTypedInvocation : public virtual TypedInvocation
{
public: