@@ -856,7 +856,7 @@ public function testTouchItemsReturnsGivenKeysIfNonWritable()
856
856
857
857
public function testOptimize ()
858
858
{
859
- if (($ this ->_storage instanceof OptimizableInterface) !== true ) {
859
+ if (! ($ this ->_storage instanceof OptimizableInterface)) {
860
860
$ this ->markTestSkipped ("Storage doesn't implement OptimizableInterface " );
861
861
}
862
862
@@ -897,7 +897,7 @@ public function testIterator()
897
897
898
898
public function testFlush ()
899
899
{
900
- if (($ this ->_storage instanceof FlushableInterface) !== true ) {
900
+ if (! ($ this ->_storage instanceof FlushableInterface)) {
901
901
$ this ->markTestSkipped ("Storage doesn't implement OptimizableInterface " );
902
902
}
903
903
@@ -913,7 +913,7 @@ public function testFlush()
913
913
914
914
public function testClearByPrefix ()
915
915
{
916
- if (($ this ->_storage instanceof ClearByPrefixInterface) !== true ) {
916
+ if (! ($ this ->_storage instanceof ClearByPrefixInterface)) {
917
917
$ this ->markTestSkipped ("Storage doesn't implement ClearByPrefixInterface " );
918
918
}
919
919
@@ -931,7 +931,7 @@ public function testClearByPrefix()
931
931
932
932
public function testClearByNamespace ()
933
933
{
934
- if (($ this ->_storage instanceof ClearByNamespaceInterface) !== true ) {
934
+ if (! ($ this ->_storage instanceof ClearByNamespaceInterface)) {
935
935
$ this ->markTestSkipped ("Storage doesn't implement ClearByNamespaceInterface " );
936
936
}
937
937
@@ -965,7 +965,7 @@ public function testClearByNamespace()
965
965
966
966
public function testClearExpired ()
967
967
{
968
- if (($ this ->_storage instanceof ClearExpiredInterface) !== true ) {
968
+ if (! ($ this ->_storage instanceof ClearExpiredInterface)) {
969
969
$ this ->markTestSkipped ("Storage doesn't implement ClearExpiredInterface " );
970
970
}
971
971
@@ -994,7 +994,7 @@ public function testClearExpired()
994
994
995
995
public function testTagable ()
996
996
{
997
- if (($ this ->_storage instanceof TaggableInterface) !== true ) {
997
+ if (! ($ this ->_storage instanceof TaggableInterface)) {
998
998
$ this ->markTestSkipped ("Storage doesn't implement TaggableInterface " );
999
999
}
1000
1000
0 commit comments