summaryrefslogtreecommitdiffstats
path: root/lib/private/app/platform.php
blob: 292159337a0fa7385eb3fe1065063083aca783c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
 /**
 * @author Thomas Müller
 * @copyright 2014 Thomas Müller deepdiver@owncloud.com
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace OC\App;

class Platform {
	public function getPhpVersion() {
		return phpversion();
	}
}