forked from parse-community/parse-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelper.php
More file actions
38 lines (32 loc) · 716 Bytes
/
Copy pathHelper.php
File metadata and controls
38 lines (32 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
namespace Parse\Test;
use Parse\ParseClient;
use Parse\ParseObject;
use Parse\ParseQuery;
class Helper
{
public static function setUp()
{
ini_set('error_reporting', E_ALL);
ini_set('display_errors', 1);
date_default_timezone_set('UTC');
ParseClient::initialize(
'app-id-here',
'rest-api-key-here',
'master-key-here'
);
}
public static function tearDown()
{
}
public static function clearClass($class)
{
$query = new ParseQuery($class);
$query->each(
function (ParseObject $obj) {
$obj->destroy(true);
},
true
);
}
}