Skip to content

Commit cd3e15b

Browse files
authored
Merge pull request #3 from aliukevicius/php-7-2-fix
Update openstack version to ^3.0
2 parents cf4e853 + cfbb706 commit cd3e15b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525
},
2626
"require": {
27-
"php-opencloud/openstack": "^2.0",
27+
"php-opencloud/openstack": "^3.0",
2828
"illuminate/support": "^5.4",
2929
"league/flysystem": "^1.0",
3030
"nimbusoft/flysystem-openstack-swift": "^0.2.0",

tests/OVHSwiftAdapterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function setUp()
1717
$this->container = Mockery::mock('OpenStack\ObjectStore\v1\Models\Container');
1818

1919
$this->container->name = 'container-name';
20-
$this->object = Mockery::mock('OpenStack\ObjectStore\v1\Models\Object');
20+
$this->object = Mockery::mock('OpenStack\ObjectStore\v1\Models\StorageObject');
2121
$this->adapter = new OVHSwiftAdapter($this->container, $this->urlVars);
2222
}
2323

0 commit comments

Comments
 (0)