Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lib/OpenCloud/Queues/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
use Guzzle\Http\Exception\BadResponseException;
use OpenCloud\Common\Exceptions\InvalidArgumentError;
use OpenCloud\Common\Service\CatalogService;
use OpenCloud\Queues\Resource\Queue;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

/**
Expand Down Expand Up @@ -117,7 +118,10 @@ public function getClientId()
/**
* Create a new Queue.
*
* @param $name Name of the new queue
* @param string $name Name of the new queue
*
* @throws InvalidArgumentError
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You need a slash before this.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nvm...

*
* @return Queue
*/
public function createQueue($name)
Expand Down