Passed
Push — master ( c449d5...4361d6 )
by Morris
24:35 queued 12:21
created
apps/dav/lib/Events/CardCreatedEvent.php 1 patch
Indentation   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -34,67 +34,67 @@
 block discarded – undo
34 34
  */
35 35
 class CardCreatedEvent extends Event {
36 36
 
37
-	/** @var int */
38
-	private $addressBookId;
37
+    /** @var int */
38
+    private $addressBookId;
39 39
 
40
-	/** @var array */
41
-	private $addressBookData;
40
+    /** @var array */
41
+    private $addressBookData;
42 42
 
43
-	/** @var array */
44
-	private $shares;
43
+    /** @var array */
44
+    private $shares;
45 45
 
46
-	/** @var array */
47
-	private $cardData;
46
+    /** @var array */
47
+    private $cardData;
48 48
 
49
-	/**
50
-	 * CardCreatedEvent constructor.
51
-	 *
52
-	 * @param int $addressBookId
53
-	 * @param array $addressBookData
54
-	 * @param array $shares
55
-	 * @param array $cardData
56
-	 * @since 20.0.0
57
-	 */
58
-	public function __construct(int $addressBookId,
59
-								array $addressBookData,
60
-								array $shares,
61
-								array $cardData) {
62
-		parent::__construct();
63
-		$this->addressBookId = $addressBookId;
64
-		$this->addressBookData = $addressBookData;
65
-		$this->shares = $shares;
66
-		$this->cardData = $cardData;
67
-	}
49
+    /**
50
+     * CardCreatedEvent constructor.
51
+     *
52
+     * @param int $addressBookId
53
+     * @param array $addressBookData
54
+     * @param array $shares
55
+     * @param array $cardData
56
+     * @since 20.0.0
57
+     */
58
+    public function __construct(int $addressBookId,
59
+                                array $addressBookData,
60
+                                array $shares,
61
+                                array $cardData) {
62
+        parent::__construct();
63
+        $this->addressBookId = $addressBookId;
64
+        $this->addressBookData = $addressBookData;
65
+        $this->shares = $shares;
66
+        $this->cardData = $cardData;
67
+    }
68 68
 
69
-	/**
70
-	 * @return int
71
-	 * @since 20.0.0
72
-	 */
73
-	public function getAddressBookId(): int {
74
-		return $this->addressBookId;
75
-	}
69
+    /**
70
+     * @return int
71
+     * @since 20.0.0
72
+     */
73
+    public function getAddressBookId(): int {
74
+        return $this->addressBookId;
75
+    }
76 76
 
77
-	/**
78
-	 * @return array
79
-	 * @since 20.0.0
80
-	 */
81
-	public function getAddressBookData(): array {
82
-		return $this->addressBookData;
83
-	}
77
+    /**
78
+     * @return array
79
+     * @since 20.0.0
80
+     */
81
+    public function getAddressBookData(): array {
82
+        return $this->addressBookData;
83
+    }
84 84
 
85
-	/**
86
-	 * @return array
87
-	 * @since 20.0.0
88
-	 */
89
-	public function getShares(): array {
90
-		return $this->shares;
91
-	}
85
+    /**
86
+     * @return array
87
+     * @since 20.0.0
88
+     */
89
+    public function getShares(): array {
90
+        return $this->shares;
91
+    }
92 92
 
93
-	/**
94
-	 * @return array
95
-	 * @since 20.0.0
96
-	 */
97
-	public function getCardData(): array {
98
-		return $this->cardData;
99
-	}
93
+    /**
94
+     * @return array
95
+     * @since 20.0.0
96
+     */
97
+    public function getCardData(): array {
98
+        return $this->cardData;
99
+    }
100 100
 }
Please login to merge, or discard this patch.
apps/dav/lib/Events/CalendarObjectUpdatedEvent.php 1 patch
Indentation   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -34,67 +34,67 @@
 block discarded – undo
34 34
  */
35 35
 class CalendarObjectUpdatedEvent extends Event {
36 36
 
37
-	/** @var int */
38
-	private $calendarId;
37
+    /** @var int */
38
+    private $calendarId;
39 39
 
40
-	/** @var array */
41
-	private $calendarData;
40
+    /** @var array */
41
+    private $calendarData;
42 42
 
43
-	/** @var array */
44
-	private $shares;
43
+    /** @var array */
44
+    private $shares;
45 45
 
46
-	/** @var array */
47
-	private $objectData;
46
+    /** @var array */
47
+    private $objectData;
48 48
 
49
-	/**
50
-	 * CalendarObjectUpdatedEvent constructor.
51
-	 *
52
-	 * @param int $calendarId
53
-	 * @param array $calendarData
54
-	 * @param array $shares
55
-	 * @param array $objectData
56
-	 * @since 20.0.0
57
-	 */
58
-	public function __construct(int $calendarId,
59
-								array $calendarData,
60
-								array $shares,
61
-								array $objectData) {
62
-		parent::__construct();
63
-		$this->calendarId = $calendarId;
64
-		$this->calendarData = $calendarData;
65
-		$this->shares = $shares;
66
-		$this->objectData = $objectData;
67
-	}
49
+    /**
50
+     * CalendarObjectUpdatedEvent constructor.
51
+     *
52
+     * @param int $calendarId
53
+     * @param array $calendarData
54
+     * @param array $shares
55
+     * @param array $objectData
56
+     * @since 20.0.0
57
+     */
58
+    public function __construct(int $calendarId,
59
+                                array $calendarData,
60
+                                array $shares,
61
+                                array $objectData) {
62
+        parent::__construct();
63
+        $this->calendarId = $calendarId;
64
+        $this->calendarData = $calendarData;
65
+        $this->shares = $shares;
66
+        $this->objectData = $objectData;
67
+    }
68 68
 
69
-	/**
70
-	 * @return int
71
-	 * @since 20.0.0
72
-	 */
73
-	public function getCalendarId(): int {
74
-		return $this->calendarId;
75
-	}
69
+    /**
70
+     * @return int
71
+     * @since 20.0.0
72
+     */
73
+    public function getCalendarId(): int {
74
+        return $this->calendarId;
75
+    }
76 76
 
77
-	/**
78
-	 * @return array
79
-	 * @since 20.0.0
80
-	 */
81
-	public function getCalendarData(): array {
82
-		return $this->calendarData;
83
-	}
77
+    /**
78
+     * @return array
79
+     * @since 20.0.0
80
+     */
81
+    public function getCalendarData(): array {
82
+        return $this->calendarData;
83
+    }
84 84
 
85
-	/**
86
-	 * @return array
87
-	 * @since 20.0.0
88
-	 */
89
-	public function getShares(): array {
90
-		return $this->shares;
91
-	}
85
+    /**
86
+     * @return array
87
+     * @since 20.0.0
88
+     */
89
+    public function getShares(): array {
90
+        return $this->shares;
91
+    }
92 92
 
93
-	/**
94
-	 * @return array
95
-	 * @since 20.0.0
96
-	 */
97
-	public function getObjectData(): array {
98
-		return $this->objectData;
99
-	}
93
+    /**
94
+     * @return array
95
+     * @since 20.0.0
96
+     */
97
+    public function getObjectData(): array {
98
+        return $this->objectData;
99
+    }
100 100
 }
Please login to merge, or discard this patch.
apps/dav/lib/Events/AddressBookDeletedEvent.php 1 patch
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -34,53 +34,53 @@
 block discarded – undo
34 34
  */
35 35
 class AddressBookDeletedEvent extends Event {
36 36
 
37
-	/** @var int */
38
-	private $addressBookId;
37
+    /** @var int */
38
+    private $addressBookId;
39 39
 
40
-	/** @var array */
41
-	private $addressBookData;
40
+    /** @var array */
41
+    private $addressBookData;
42 42
 
43
-	/** @var array */
44
-	private $shares;
43
+    /** @var array */
44
+    private $shares;
45 45
 
46
-	/**
47
-	 * AddressBookDeletedEvent constructor.
48
-	 *
49
-	 * @param int $addressBookId
50
-	 * @param array $addressBookData
51
-	 * @param array $shares
52
-	 * @since 20.0.0
53
-	 */
54
-	public function __construct(int $addressBookId,
55
-								array $addressBookData,
56
-								array $shares) {
57
-		parent::__construct();
58
-		$this->addressBookId = $addressBookId;
59
-		$this->addressBookData = $addressBookData;
60
-		$this->shares = $shares;
61
-	}
46
+    /**
47
+     * AddressBookDeletedEvent constructor.
48
+     *
49
+     * @param int $addressBookId
50
+     * @param array $addressBookData
51
+     * @param array $shares
52
+     * @since 20.0.0
53
+     */
54
+    public function __construct(int $addressBookId,
55
+                                array $addressBookData,
56
+                                array $shares) {
57
+        parent::__construct();
58
+        $this->addressBookId = $addressBookId;
59
+        $this->addressBookData = $addressBookData;
60
+        $this->shares = $shares;
61
+    }
62 62
 
63
-	/**
64
-	 * @return int
65
-	 * @since 20.0.0
66
-	 */
67
-	public function getAddressBookId():int {
68
-		return $this->addressBookId;
69
-	}
63
+    /**
64
+     * @return int
65
+     * @since 20.0.0
66
+     */
67
+    public function getAddressBookId():int {
68
+        return $this->addressBookId;
69
+    }
70 70
 
71
-	/**
72
-	 * @return array
73
-	 * @since 20.0.0
74
-	 */
75
-	public function getAddressBookData(): array {
76
-		return $this->addressBookData;
77
-	}
71
+    /**
72
+     * @return array
73
+     * @since 20.0.0
74
+     */
75
+    public function getAddressBookData(): array {
76
+        return $this->addressBookData;
77
+    }
78 78
 
79
-	/**
80
-	 * @return array
81
-	 * @since 20.0.0
82
-	 */
83
-	public function getShares(): array {
84
-		return $this->shares;
85
-	}
79
+    /**
80
+     * @return array
81
+     * @since 20.0.0
82
+     */
83
+    public function getShares(): array {
84
+        return $this->shares;
85
+    }
86 86
 }
Please login to merge, or discard this patch.
apps/dav/lib/Events/CalendarPublishedEvent.php 1 patch
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -34,53 +34,53 @@
 block discarded – undo
34 34
  */
35 35
 class CalendarPublishedEvent extends Event {
36 36
 
37
-	/** @var int */
38
-	private $calendarId;
37
+    /** @var int */
38
+    private $calendarId;
39 39
 
40
-	/** @var array */
41
-	private $calendarData;
40
+    /** @var array */
41
+    private $calendarData;
42 42
 
43
-	/** @var string */
44
-	private $publicUri;
43
+    /** @var string */
44
+    private $publicUri;
45 45
 
46
-	/**
47
-	 * CalendarPublishedEvent constructor.
48
-	 *
49
-	 * @param int $calendarId
50
-	 * @param array $calendarData
51
-	 * @param string $publicUri
52
-	 * @since 20.0.0
53
-	 */
54
-	public function __construct(int $calendarId,
55
-								array $calendarData,
56
-								string $publicUri) {
57
-		parent::__construct();
58
-		$this->calendarId = $calendarId;
59
-		$this->calendarData = $calendarData;
60
-		$this->publicUri = $publicUri;
61
-	}
46
+    /**
47
+     * CalendarPublishedEvent constructor.
48
+     *
49
+     * @param int $calendarId
50
+     * @param array $calendarData
51
+     * @param string $publicUri
52
+     * @since 20.0.0
53
+     */
54
+    public function __construct(int $calendarId,
55
+                                array $calendarData,
56
+                                string $publicUri) {
57
+        parent::__construct();
58
+        $this->calendarId = $calendarId;
59
+        $this->calendarData = $calendarData;
60
+        $this->publicUri = $publicUri;
61
+    }
62 62
 
63
-	/**
64
-	 * @return int
65
-	 * @since 20.0.0
66
-	 */
67
-	public function getCalendarId(): int {
68
-		return $this->calendarId;
69
-	}
63
+    /**
64
+     * @return int
65
+     * @since 20.0.0
66
+     */
67
+    public function getCalendarId(): int {
68
+        return $this->calendarId;
69
+    }
70 70
 
71
-	/**
72
-	 * @return array
73
-	 * @since 20.0.0
74
-	 */
75
-	public function getCalendarData(): array {
76
-		return $this->calendarData;
77
-	}
71
+    /**
72
+     * @return array
73
+     * @since 20.0.0
74
+     */
75
+    public function getCalendarData(): array {
76
+        return $this->calendarData;
77
+    }
78 78
 
79
-	/**
80
-	 * @return string
81
-	 * @since 20.0.0
82
-	 */
83
-	public function getPublicUri(): string {
84
-		return $this->publicUri;
85
-	}
79
+    /**
80
+     * @return string
81
+     * @since 20.0.0
82
+     */
83
+    public function getPublicUri(): string {
84
+        return $this->publicUri;
85
+    }
86 86
 }
Please login to merge, or discard this patch.
apps/dav/lib/Events/CalendarShareUpdatedEvent.php 1 patch
Indentation   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -34,81 +34,81 @@
 block discarded – undo
34 34
  */
35 35
 class CalendarShareUpdatedEvent extends Event {
36 36
 
37
-	/** @var int */
38
-	private $calendarId;
37
+    /** @var int */
38
+    private $calendarId;
39 39
 
40
-	/** @var array */
41
-	private $calendarData;
40
+    /** @var array */
41
+    private $calendarData;
42 42
 
43
-	/** @var array */
44
-	private $oldShares;
43
+    /** @var array */
44
+    private $oldShares;
45 45
 
46
-	/** @var array */
47
-	private $added;
46
+    /** @var array */
47
+    private $added;
48 48
 
49
-	/** @var array */
50
-	private $removed;
49
+    /** @var array */
50
+    private $removed;
51 51
 
52
-	/**
53
-	 * CalendarShareUpdatedEvent constructor.
54
-	 *
55
-	 * @param int $calendarId
56
-	 * @param array $calendarData
57
-	 * @param array $oldShares
58
-	 * @param array $added
59
-	 * @param array $removed
60
-	 * @since 20.0.0
61
-	 */
62
-	public function __construct(int $calendarId,
63
-								array $calendarData,
64
-								array $oldShares,
65
-								array $added,
66
-								array $removed) {
67
-		parent::__construct();
68
-		$this->calendarId = $calendarId;
69
-		$this->calendarData = $calendarData;
70
-		$this->oldShares = $oldShares;
71
-		$this->added = $added;
72
-		$this->removed = $removed;
73
-	}
52
+    /**
53
+     * CalendarShareUpdatedEvent constructor.
54
+     *
55
+     * @param int $calendarId
56
+     * @param array $calendarData
57
+     * @param array $oldShares
58
+     * @param array $added
59
+     * @param array $removed
60
+     * @since 20.0.0
61
+     */
62
+    public function __construct(int $calendarId,
63
+                                array $calendarData,
64
+                                array $oldShares,
65
+                                array $added,
66
+                                array $removed) {
67
+        parent::__construct();
68
+        $this->calendarId = $calendarId;
69
+        $this->calendarData = $calendarData;
70
+        $this->oldShares = $oldShares;
71
+        $this->added = $added;
72
+        $this->removed = $removed;
73
+    }
74 74
 
75
-	/**
76
-	 * @return int
77
-	 * @since 20.0.0
78
-	 */
79
-	public function getCalendarId(): int {
80
-		return $this->calendarId;
81
-	}
75
+    /**
76
+     * @return int
77
+     * @since 20.0.0
78
+     */
79
+    public function getCalendarId(): int {
80
+        return $this->calendarId;
81
+    }
82 82
 
83
-	/**
84
-	 * @return array
85
-	 * @since 20.0.0
86
-	 */
87
-	public function getCalendarData(): array {
88
-		return $this->calendarData;
89
-	}
83
+    /**
84
+     * @return array
85
+     * @since 20.0.0
86
+     */
87
+    public function getCalendarData(): array {
88
+        return $this->calendarData;
89
+    }
90 90
 
91
-	/**
92
-	 * @return array
93
-	 * @since 20.0.0
94
-	 */
95
-	public function getOldShares(): array {
96
-		return $this->oldShares;
97
-	}
91
+    /**
92
+     * @return array
93
+     * @since 20.0.0
94
+     */
95
+    public function getOldShares(): array {
96
+        return $this->oldShares;
97
+    }
98 98
 
99
-	/**
100
-	 * @return array
101
-	 * @since 20.0.0
102
-	 */
103
-	public function getAdded(): array {
104
-		return $this->added;
105
-	}
99
+    /**
100
+     * @return array
101
+     * @since 20.0.0
102
+     */
103
+    public function getAdded(): array {
104
+        return $this->added;
105
+    }
106 106
 
107
-	/**
108
-	 * @return array
109
-	 * @since 20.0.0
110
-	 */
111
-	public function getRemoved(): array {
112
-		return $this->removed;
113
-	}
107
+    /**
108
+     * @return array
109
+     * @since 20.0.0
110
+     */
111
+    public function getRemoved(): array {
112
+        return $this->removed;
113
+    }
114 114
 }
Please login to merge, or discard this patch.
apps/dav/lib/Events/CalendarObjectDeletedEvent.php 1 patch
Indentation   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -34,67 +34,67 @@
 block discarded – undo
34 34
  */
35 35
 class CalendarObjectDeletedEvent extends Event {
36 36
 
37
-	/** @var int */
38
-	private $calendarId;
37
+    /** @var int */
38
+    private $calendarId;
39 39
 
40
-	/** @var array */
41
-	private $calendarData;
40
+    /** @var array */
41
+    private $calendarData;
42 42
 
43
-	/** @var array */
44
-	private $shares;
43
+    /** @var array */
44
+    private $shares;
45 45
 
46
-	/** @var array */
47
-	private $objectData;
46
+    /** @var array */
47
+    private $objectData;
48 48
 
49
-	/**
50
-	 * CalendarObjectDeletedEvent constructor.
51
-	 *
52
-	 * @param int $calendarId
53
-	 * @param array $calendarData
54
-	 * @param array $shares
55
-	 * @param array $objectData
56
-	 * @since 20.0.0
57
-	 */
58
-	public function __construct(int $calendarId,
59
-								array $calendarData,
60
-								array $shares,
61
-								array $objectData) {
62
-		parent::__construct();
63
-		$this->calendarId = $calendarId;
64
-		$this->calendarData = $calendarData;
65
-		$this->shares = $shares;
66
-		$this->objectData = $objectData;
67
-	}
49
+    /**
50
+     * CalendarObjectDeletedEvent constructor.
51
+     *
52
+     * @param int $calendarId
53
+     * @param array $calendarData
54
+     * @param array $shares
55
+     * @param array $objectData
56
+     * @since 20.0.0
57
+     */
58
+    public function __construct(int $calendarId,
59
+                                array $calendarData,
60
+                                array $shares,
61
+                                array $objectData) {
62
+        parent::__construct();
63
+        $this->calendarId = $calendarId;
64
+        $this->calendarData = $calendarData;
65
+        $this->shares = $shares;
66
+        $this->objectData = $objectData;
67
+    }
68 68
 
69
-	/**
70
-	 * @return int
71
-	 * @since 20.0.0
72
-	 */
73
-	public function getCalendarId(): int {
74
-		return $this->calendarId;
75
-	}
69
+    /**
70
+     * @return int
71
+     * @since 20.0.0
72
+     */
73
+    public function getCalendarId(): int {
74
+        return $this->calendarId;
75
+    }
76 76
 
77
-	/**
78
-	 * @return array
79
-	 * @since 20.0.0
80
-	 */
81
-	public function getCalendarData(): array {
82
-		return $this->calendarData;
83
-	}
77
+    /**
78
+     * @return array
79
+     * @since 20.0.0
80
+     */
81
+    public function getCalendarData(): array {
82
+        return $this->calendarData;
83
+    }
84 84
 
85
-	/**
86
-	 * @return array
87
-	 * @since 20.0.0
88
-	 */
89
-	public function getShares(): array {
90
-		return $this->shares;
91
-	}
85
+    /**
86
+     * @return array
87
+     * @since 20.0.0
88
+     */
89
+    public function getShares(): array {
90
+        return $this->shares;
91
+    }
92 92
 
93
-	/**
94
-	 * @return array
95
-	 * @since 20.0.0
96
-	 */
97
-	public function getObjectData(): array {
98
-		return $this->objectData;
99
-	}
93
+    /**
94
+     * @return array
95
+     * @since 20.0.0
96
+     */
97
+    public function getObjectData(): array {
98
+        return $this->objectData;
99
+    }
100 100
 }
Please login to merge, or discard this patch.
apps/dav/lib/Events/CachedCalendarObjectDeletedEvent.php 1 patch
Indentation   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -34,67 +34,67 @@
 block discarded – undo
34 34
  */
35 35
 class CachedCalendarObjectDeletedEvent extends Event {
36 36
 
37
-	/** @var int */
38
-	private $subscriptionId;
37
+    /** @var int */
38
+    private $subscriptionId;
39 39
 
40
-	/** @var array */
41
-	private $subscriptionData;
40
+    /** @var array */
41
+    private $subscriptionData;
42 42
 
43
-	/** @var array */
44
-	private $shares;
43
+    /** @var array */
44
+    private $shares;
45 45
 
46
-	/** @var array */
47
-	private $objectData;
46
+    /** @var array */
47
+    private $objectData;
48 48
 
49
-	/**
50
-	 * CachedCalendarObjectDeletedEvent constructor.
51
-	 *
52
-	 * @param int $subscriptionId
53
-	 * @param array $subscriptionData
54
-	 * @param array $shares
55
-	 * @param array $objectData
56
-	 * @since 20.0.0
57
-	 */
58
-	public function __construct(int $subscriptionId,
59
-								array $subscriptionData,
60
-								array $shares,
61
-								array $objectData) {
62
-		parent::__construct();
63
-		$this->subscriptionId = $subscriptionId;
64
-		$this->subscriptionData = $subscriptionData;
65
-		$this->shares = $shares;
66
-		$this->objectData = $objectData;
67
-	}
49
+    /**
50
+     * CachedCalendarObjectDeletedEvent constructor.
51
+     *
52
+     * @param int $subscriptionId
53
+     * @param array $subscriptionData
54
+     * @param array $shares
55
+     * @param array $objectData
56
+     * @since 20.0.0
57
+     */
58
+    public function __construct(int $subscriptionId,
59
+                                array $subscriptionData,
60
+                                array $shares,
61
+                                array $objectData) {
62
+        parent::__construct();
63
+        $this->subscriptionId = $subscriptionId;
64
+        $this->subscriptionData = $subscriptionData;
65
+        $this->shares = $shares;
66
+        $this->objectData = $objectData;
67
+    }
68 68
 
69
-	/**
70
-	 * @return int
71
-	 * @since 20.0.0
72
-	 */
73
-	public function getSubscriptionId(): int {
74
-		return $this->subscriptionId;
75
-	}
69
+    /**
70
+     * @return int
71
+     * @since 20.0.0
72
+     */
73
+    public function getSubscriptionId(): int {
74
+        return $this->subscriptionId;
75
+    }
76 76
 
77
-	/**
78
-	 * @return array
79
-	 * @since 20.0.0
80
-	 */
81
-	public function getSubscriptionData(): array {
82
-		return $this->subscriptionData;
83
-	}
77
+    /**
78
+     * @return array
79
+     * @since 20.0.0
80
+     */
81
+    public function getSubscriptionData(): array {
82
+        return $this->subscriptionData;
83
+    }
84 84
 
85
-	/**
86
-	 * @return array
87
-	 * @since 20.0.0
88
-	 */
89
-	public function getShares(): array {
90
-		return $this->shares;
91
-	}
85
+    /**
86
+     * @return array
87
+     * @since 20.0.0
88
+     */
89
+    public function getShares(): array {
90
+        return $this->shares;
91
+    }
92 92
 
93
-	/**
94
-	 * @return array
95
-	 * @since 20.0.0
96
-	 */
97
-	public function getObjectData(): array {
98
-		return $this->objectData;
99
-	}
93
+    /**
94
+     * @return array
95
+     * @since 20.0.0
96
+     */
97
+    public function getObjectData(): array {
98
+        return $this->objectData;
99
+    }
100 100
 }
Please login to merge, or discard this patch.
apps/dav/lib/Events/SubscriptionDeletedEvent.php 1 patch
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -34,53 +34,53 @@
 block discarded – undo
34 34
  */
35 35
 class SubscriptionDeletedEvent extends Event {
36 36
 
37
-	/** @var int */
38
-	private $subscriptionId;
37
+    /** @var int */
38
+    private $subscriptionId;
39 39
 
40
-	/** @var array */
41
-	private $subscriptionData;
40
+    /** @var array */
41
+    private $subscriptionData;
42 42
 
43
-	/** @var array */
44
-	private $shares;
43
+    /** @var array */
44
+    private $shares;
45 45
 
46
-	/**
47
-	 * SubscriptionDeletedEvent constructor.
48
-	 *
49
-	 * @param int $subscriptionId
50
-	 * @param array $subscriptionData
51
-	 * @param array $shares
52
-	 * @since 20.0.0
53
-	 */
54
-	public function __construct(int $subscriptionId,
55
-								array $subscriptionData,
56
-								array $shares) {
57
-		parent::__construct();
58
-		$this->subscriptionId = $subscriptionId;
59
-		$this->subscriptionData = $subscriptionData;
60
-		$this->shares = $shares;
61
-	}
46
+    /**
47
+     * SubscriptionDeletedEvent constructor.
48
+     *
49
+     * @param int $subscriptionId
50
+     * @param array $subscriptionData
51
+     * @param array $shares
52
+     * @since 20.0.0
53
+     */
54
+    public function __construct(int $subscriptionId,
55
+                                array $subscriptionData,
56
+                                array $shares) {
57
+        parent::__construct();
58
+        $this->subscriptionId = $subscriptionId;
59
+        $this->subscriptionData = $subscriptionData;
60
+        $this->shares = $shares;
61
+    }
62 62
 
63
-	/**
64
-	 * @return int
65
-	 * @since 20.0.0
66
-	 */
67
-	public function getSubscriptionId(): int {
68
-		return $this->subscriptionId;
69
-	}
63
+    /**
64
+     * @return int
65
+     * @since 20.0.0
66
+     */
67
+    public function getSubscriptionId(): int {
68
+        return $this->subscriptionId;
69
+    }
70 70
 
71
-	/**
72
-	 * @return array
73
-	 * @since 20.0.0
74
-	 */
75
-	public function getSubscriptionData(): array {
76
-		return $this->subscriptionData;
77
-	}
71
+    /**
72
+     * @return array
73
+     * @since 20.0.0
74
+     */
75
+    public function getSubscriptionData(): array {
76
+        return $this->subscriptionData;
77
+    }
78 78
 
79
-	/**
80
-	 * @return array
81
-	 * @since 20.0.0
82
-	 */
83
-	public function getShares(): array {
84
-		return $this->shares;
85
-	}
79
+    /**
80
+     * @return array
81
+     * @since 20.0.0
82
+     */
83
+    public function getShares(): array {
84
+        return $this->shares;
85
+    }
86 86
 }
Please login to merge, or discard this patch.
apps/dav/lib/Events/CachedCalendarObjectCreatedEvent.php 1 patch
Indentation   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -34,67 +34,67 @@
 block discarded – undo
34 34
  */
35 35
 class CachedCalendarObjectCreatedEvent extends Event {
36 36
 
37
-	/** @var int */
38
-	private $subscriptionId;
37
+    /** @var int */
38
+    private $subscriptionId;
39 39
 
40
-	/** @var array */
41
-	private $subscriptionData;
40
+    /** @var array */
41
+    private $subscriptionData;
42 42
 
43
-	/** @var array */
44
-	private $shares;
43
+    /** @var array */
44
+    private $shares;
45 45
 
46
-	/** @var array */
47
-	private $objectData;
46
+    /** @var array */
47
+    private $objectData;
48 48
 
49
-	/**
50
-	 * CachedCalendarObjectCreatedEvent constructor.
51
-	 *
52
-	 * @param int $subscriptionId
53
-	 * @param array $subscriptionData
54
-	 * @param array $shares
55
-	 * @param array $objectData
56
-	 * @since 20.0.0
57
-	 */
58
-	public function __construct(int $subscriptionId,
59
-								array $subscriptionData,
60
-								array $shares,
61
-								array $objectData) {
62
-		parent::__construct();
63
-		$this->subscriptionId = $subscriptionId;
64
-		$this->subscriptionData = $subscriptionData;
65
-		$this->shares = $shares;
66
-		$this->objectData = $objectData;
67
-	}
49
+    /**
50
+     * CachedCalendarObjectCreatedEvent constructor.
51
+     *
52
+     * @param int $subscriptionId
53
+     * @param array $subscriptionData
54
+     * @param array $shares
55
+     * @param array $objectData
56
+     * @since 20.0.0
57
+     */
58
+    public function __construct(int $subscriptionId,
59
+                                array $subscriptionData,
60
+                                array $shares,
61
+                                array $objectData) {
62
+        parent::__construct();
63
+        $this->subscriptionId = $subscriptionId;
64
+        $this->subscriptionData = $subscriptionData;
65
+        $this->shares = $shares;
66
+        $this->objectData = $objectData;
67
+    }
68 68
 
69
-	/**
70
-	 * @return int
71
-	 * @since 20.0.0
72
-	 */
73
-	public function getSubscriptionId(): int {
74
-		return $this->subscriptionId;
75
-	}
69
+    /**
70
+     * @return int
71
+     * @since 20.0.0
72
+     */
73
+    public function getSubscriptionId(): int {
74
+        return $this->subscriptionId;
75
+    }
76 76
 
77
-	/**
78
-	 * @return array
79
-	 * @since 20.0.0
80
-	 */
81
-	public function getSubscriptionData(): array {
82
-		return $this->subscriptionData;
83
-	}
77
+    /**
78
+     * @return array
79
+     * @since 20.0.0
80
+     */
81
+    public function getSubscriptionData(): array {
82
+        return $this->subscriptionData;
83
+    }
84 84
 
85
-	/**
86
-	 * @return array
87
-	 * @since 20.0.0
88
-	 */
89
-	public function getShares(): array {
90
-		return $this->shares;
91
-	}
85
+    /**
86
+     * @return array
87
+     * @since 20.0.0
88
+     */
89
+    public function getShares(): array {
90
+        return $this->shares;
91
+    }
92 92
 
93
-	/**
94
-	 * @return array
95
-	 * @since 20.0.0
96
-	 */
97
-	public function getObjectData(): array {
98
-		return $this->objectData;
99
-	}
93
+    /**
94
+     * @return array
95
+     * @since 20.0.0
96
+     */
97
+    public function getObjectData(): array {
98
+        return $this->objectData;
99
+    }
100 100
 }
Please login to merge, or discard this patch.