-
Notifications
You must be signed in to change notification settings - Fork 273
Fix first code section in Service Bus files #504
Comments
all fixed now. |
Still some issues:
|
fix ready. |
Still some problems: ~\WindowsAzure\Common\Internal\Atom\AtomBase.php
~\WindowsAzure\Common\Internal\Atom\AtomLink.php
~\WindowsAzure\Common\Internal\Atom\Category.php
~\WindowsAzure\Common\Internal\Atom\Content.php
~\WindowsAzure\Common\Internal\Atom\Entry.php
~\WindowsAzure\Common\Internal\Atom\Feed.php
~\WindowsAzure\Common\Internal\Atom\Generator.php
~\WindowsAzure\Common\Internal\Atom\Person.php
~\WindowsAzure\Common\Internal\Atom\Source.php
|
all fixed now. |
There are a number of differences between the Service Bus files and those for other services:
In the following files in
...\tests\unit\WindowsAzure\Common\Internal\Atom\
AtomLinkTest.php
ContentTest.php
EntryTest.php
FeedTest.php
PersonTest.php
SourceTest.php
Need to replace
@package Tests\Unit\WindowsAzure\Services\Queue\Models
with
@package Tests\Unit\WindowsAzure\Common\Internal\Atom
In
...\tests\unit\WindowsAzure\Common\Internal\Filters\WrapFilterTest.php
, need to@package
to match that namespace.In the following files in
...\tests\unit\WindowsAzure\ServiceBus\
ServiceBusRestProxyTest.php
ServiceBusServiceTest.php
ServiceBusSettingsTest.php
WrapRestProxyTest.php
WrapServiceTest.php
Internal\WrapTokenManagerTest.php
Need to make the first comment in sync with the other test comments:
@category
@copyright
Almost all the files in
...\tests\unit\WindowsAzure\ServiceBus\models\
have incorrect text in the @Package sections (Tests\Unit\WindowsAzure\Services\Queue\Models). They should all be:@package Tests\Unit\WindowsAzure\ServiceBus\Models
Almost all the files in
...\WindowsAzure\Common\Internal\Atom\
have the following problems:@package
sections (WindowsAzure\ServiceBus\Internal\Atom). They should all be:@package WindowsAzure\Common\Internal\Atom
In
...\WindowsAzure\ServiceBus\WrapRestProxy.php
, the @author tag incorrect (azurephp@microsoft). It should be@author Azure PHP SDK <[email protected]>
In
...\WindowsAzure\ServiceBus\Internal\IServiceBus.php
, there is a double semicolon "... Version 2.0 (the "License");;", it must be removed.In
...\WindowsAzure\ServiceBus\Internal\IWrap.php
, the@author
tag incorrect (azurephp@microsoft). It should be@author Azure PHP SDK <[email protected]>
The text was updated successfully, but these errors were encountered: