Skip to content

Commit

Permalink
!!! TASK: Bump requirement to Flow >= 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlemke committed Mar 8, 2016
1 parent 1ca7c23 commit d17dfc5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions Classes/S3Target.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
use Aws\S3\Exception\S3Exception;
use Aws\S3\S3Client;
use TYPO3\Flow\Annotations as Flow;
use TYPO3\Flow\Resource\Collection;
use TYPO3\Flow\Resource\CollectionInterface;
use TYPO3\Flow\Resource\Exception;
use TYPO3\Flow\Resource\Resource;
Expand Down Expand Up @@ -158,11 +157,11 @@ public function getKeyPrefix()
/**
* Publishes the whole collection to this target
*
* @param \TYPO3\Flow\Resource\Collection $collection The collection to publish
* @param \TYPO3\Flow\Resource\CollectionInterface $collection The collection to publish
* @return void
* @throws Exception
*/
public function publishCollection(Collection $collection)
public function publishCollection(CollectionInterface $collection)
{
if (!isset($this->existingObjectsInfo)) {
$this->existingObjectsInfo = array();
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"MIT"
],
"require": {
"typo3/flow": ">=3.0 <3.1",
"typo3/flow": ">=3.1",
"aws/aws-sdk-php": "2.8.*"
},
"autoload": {
"psr-4": {
"Flownative\\Aws\\S3\\": "Classes"
}
}
}
}

0 comments on commit d17dfc5

Please sign in to comment.