Skip to content

Commit 72e824f

Browse files
committed
implement missing contract methods
1 parent b9c291d commit 72e824f

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

src/Drivers/GoogleKmsDriver.php

+20
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,24 @@ public function getKey()
7474
// We have no key to return. This exists purely to comply with the interface.
7575
return '';
7676
}
77+
78+
/**
79+
* @return array
80+
*/
81+
public function getAllKeys()
82+
{
83+
// We have no keys to return. This exists purely to comply with the interface.
84+
return [];
85+
}
86+
87+
/**
88+
* Get the previous encryption keys.
89+
*
90+
* @return array
91+
*/
92+
public function getPreviousKeys()
93+
{
94+
// We have no keys to return. This exists purely to comply with the interface.
95+
return [];
96+
}
7797
}

src/Drivers/KmsDriver.php

+20
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,24 @@ public function getKey()
7777
// We have no key to return. This exists purely to comply with the interface.
7878
return '';
7979
}
80+
81+
/**
82+
* @return array
83+
*/
84+
public function getAllKeys()
85+
{
86+
// We have no keys to return. This exists purely to comply with the interface.
87+
return [];
88+
}
89+
90+
/**
91+
* Get the previous encryption keys.
92+
*
93+
* @return array
94+
*/
95+
public function getPreviousKeys()
96+
{
97+
// We have no keys to return. This exists purely to comply with the interface.
98+
return [];
99+
}
80100
}

0 commit comments

Comments
 (0)