Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 17:51:06 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 17:51:06 +0300
commit1584c9ae9c23d2a7915750ef9203cba0bcebf766 (patch)
tree568db931f631afd6e96772cf2b3ac539c989ec42 /tests/lib/App
parenta7c8d26d31cb1cf69e0e060c53622e545fcfbbb3 (diff)
Add visibility to all methods and position of static keyword
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/lib/App')
-rw-r--r--tests/lib/App/DependencyAnalyzerTest.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/lib/App/DependencyAnalyzerTest.php b/tests/lib/App/DependencyAnalyzerTest.php
index 40cd308f886..09a939f4855 100644
--- a/tests/lib/App/DependencyAnalyzerTest.php
+++ b/tests/lib/App/DependencyAnalyzerTest.php
@@ -144,7 +144,7 @@ class DependencyAnalyzerTest extends TestCase {
* @param $expectedMissing
* @param $libs
*/
- function testLibs($expectedMissing, $libs) {
+ public function testLibs($expectedMissing, $libs) {
$app = [
'dependencies' => [
]
@@ -164,7 +164,7 @@ class DependencyAnalyzerTest extends TestCase {
* @param $expectedMissing
* @param $oss
*/
- function testOS($expectedMissing, $oss) {
+ public function testOS($expectedMissing, $oss) {
$app = [
'dependencies' => []
];
@@ -183,7 +183,7 @@ class DependencyAnalyzerTest extends TestCase {
* @param $expectedMissing
* @param $oc
*/
- function testOC($expectedMissing, $oc) {
+ public function testOC($expectedMissing, $oc) {
$app = [
'dependencies' => []
];
@@ -200,7 +200,7 @@ class DependencyAnalyzerTest extends TestCase {
/**
* @return array
*/
- function providesOC() {
+ public function providesOC() {
return [
// no version -> no missing dependency
[
@@ -428,7 +428,7 @@ class DependencyAnalyzerTest extends TestCase {
/**
* @return array
*/
- function providesOS() {
+ public function providesOS() {
return [
[[], null],
[[], []],
@@ -440,7 +440,7 @@ class DependencyAnalyzerTest extends TestCase {
/**
* @return array
*/
- function providesLibs() {
+ public function providesLibs() {
return [
// we expect curl to exist
[[], 'curl'],
@@ -470,7 +470,7 @@ class DependencyAnalyzerTest extends TestCase {
/**
* @return array
*/
- function providesCommands() {
+ public function providesCommands() {
return [
[[], null],
// grep is known on linux
@@ -488,7 +488,7 @@ class DependencyAnalyzerTest extends TestCase {
/**
* @return array
*/
- function providesDatabases() {
+ public function providesDatabases() {
return [
// non BC - in case on databases are defined -> all are supported
[[], null],
@@ -501,7 +501,7 @@ class DependencyAnalyzerTest extends TestCase {
/**
* @return array
*/
- function providesPhpVersion() {
+ public function providesPhpVersion() {
return [
[[], null, null, null],
[[], '5.4', null, null],