@@ -34,12 +34,12 @@ class FormStatistic implements FormStatisticInterface
3434 /**
3535 * @var int
3636 */
37- private $ categoryId ;
37+ private $ folderId ;
3838
3939 /**
4040 * @var int
4141 */
42- private $ customerId ;
42+ private $ mandatorId ;
4343
4444 /**
4545 *
@@ -82,8 +82,8 @@ class FormStatistic implements FormStatisticInterface
8282 * @param string $name
8383 * @param string $url
8484 * @param int $typeId
85- * @param int $categoryId
86- * @param int $customerId
85+ * @param int $folderId
86+ * @param int $mandatorId
8787 * @param bool $isAlias
8888 * @param int $impressions
8989 * @param int $succeeded
@@ -97,8 +97,8 @@ public function __construct(
9797 string $ name = null ,
9898 string $ url = null ,
9999 int $ typeId = null ,
100- int $ categoryId = null ,
101- int $ customerId = null ,
100+ int $ folderId = null ,
101+ int $ mandatorId = null ,
102102 bool $ isAlias = null ,
103103 int $ impressions = null ,
104104 int $ succeeded = null ,
@@ -111,8 +111,8 @@ public function __construct(
111111 $ this ->name = $ name ;
112112 $ this ->url = $ url ;
113113 $ this ->typeId = $ typeId ;
114- $ this ->categoryId = $ categoryId ;
115- $ this ->customerId = $ customerId ;
114+ $ this ->folderId = $ folderId ;
115+ $ this ->mandatorId = $ mandatorId ;
116116 $ this ->isAlias = $ isAlias ;
117117 $ this ->impressions = $ impressions ;
118118 $ this ->succeeded = $ succeeded ;
@@ -157,17 +157,17 @@ public function getTypeId(): int
157157 /**
158158 * @return int
159159 */
160- public function getCategoryId (): int
160+ public function getFolderId (): int
161161 {
162- return $ this ->categoryId ;
162+ return $ this ->folderId ;
163163 }
164164
165165 /**
166166 * @return int
167167 */
168- public function getCustomerId (): int
168+ public function getMandatorId (): int
169169 {
170- return $ this ->customerId ;
170+ return $ this ->mandatorId ;
171171 }
172172
173173 /**
0 commit comments