diff options
author | Jose <jose@zeroc.com> | 2014-09-24 21:06:55 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-09-24 21:06:55 +0200 |
commit | b1087d646fa93c4208dd227d0c9df323ff7c858b (patch) | |
tree | 48532138bffdfac0dc5c818593d9c1958cfeeeb5 /php | |
parent | PHP dependency fixes (diff) | |
download | ice-b1087d646fa93c4208dd227d0c9df323ff7c858b.tar.bz2 ice-b1087d646fa93c4208dd227d0c9df323ff7c858b.tar.xz ice-b1087d646fa93c4208dd227d0c9df323ff7c858b.zip |
Fixed (ICE-5511) - Consider removing the deprecated AMI mapping
Diffstat (limited to 'php')
-rw-r--r-- | php/test/Ice/exceptions/Test.ice | 4 | ||||
-rw-r--r-- | php/test/Ice/operations/Test.ice | 4 | ||||
-rw-r--r-- | php/test/Ice/optional/Test.ice | 1 |
3 files changed, 4 insertions, 5 deletions
diff --git a/php/test/Ice/exceptions/Test.ice b/php/test/Ice/exceptions/Test.ice index e4c2eb74586..c062413374a 100644 --- a/php/test/Ice/exceptions/Test.ice +++ b/php/test/Ice/exceptions/Test.ice @@ -40,7 +40,7 @@ exception D int dMem; }; -["ami"] interface Thrower +interface Thrower { void shutdown(); bool supportsUndeclaredExceptions(); @@ -62,7 +62,7 @@ exception D idempotent void throwLocalExceptionIdempotent(); }; -["ami"] interface WrongOperation +interface WrongOperation { void noSuchOperation(); }; diff --git a/php/test/Ice/operations/Test.ice b/php/test/Ice/operations/Test.ice index 5929e79fe25..d2cd6a03245 100644 --- a/php/test/Ice/operations/Test.ice +++ b/php/test/Ice/operations/Test.ice @@ -62,7 +62,7 @@ dictionary<string, string> StringStringD; dictionary<string, MyEnum> StringMyEnumD; dictionary<MyEnum, string> MyEnumStringD; -["ami"] class MyClass +class MyClass { void shutdown(); @@ -152,7 +152,7 @@ dictionary<MyEnum, string> MyEnumStringD; ["nonmutating"] idempotent void opNonmutating(); }; -["ami"] class MyDerivedClass extends MyClass +class MyDerivedClass extends MyClass { void opDerived(); }; diff --git a/php/test/Ice/optional/Test.ice b/php/test/Ice/optional/Test.ice index b3829b6b801..8590067c4f5 100644 --- a/php/test/Ice/optional/Test.ice +++ b/php/test/Ice/optional/Test.ice @@ -171,7 +171,6 @@ class F extends E optional(1) A af; }; -["ami"] class Initial { void shutdown(); |