Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like Job often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Job, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
40 | class Job extends BaseEntity implements JobInterface, |
||
|
|||
41 | DraftableEntityInterface, |
||
42 | SnapshotGeneratorProviderInterface |
||
43 | |||
44 | { |
||
45 | use AttachableEntityTrait, MetaDataProviderTrait, ClonePropertiesTrait; |
||
46 | |||
47 | |||
48 | private $cloneProperties = [ |
||
49 | 'classifications', 'atsMode', |
||
50 | ]; |
||
51 | |||
52 | /** |
||
53 | * unique ID of a job posting used by applications to reference |
||
54 | * a job |
||
55 | * |
||
56 | * @var String |
||
57 | * @ODM\Field(type="string") @ODM\Index |
||
58 | **/ |
||
59 | protected $applyId; |
||
60 | |||
61 | /** |
||
62 | * title of a job posting |
||
63 | * |
||
64 | * @var String |
||
65 | * @ODM\Field(type="string") |
||
66 | */ |
||
67 | protected $title; |
||
68 | |||
69 | |||
70 | /** |
||
71 | * name of the publishing company |
||
72 | * |
||
73 | * @var String |
||
74 | * @ODM\Field(type="string") |
||
75 | */ |
||
76 | protected $company; |
||
77 | |||
78 | /** |
||
79 | * publishing company |
||
80 | * |
||
81 | * @var OrganizationInterface |
||
82 | * @ODM\ReferenceOne (targetDocument="\Organizations\Entity\Organization", simple=true, inversedBy="jobs") |
||
83 | * @ODM\Index |
||
84 | */ |
||
85 | protected $organization; |
||
86 | |||
87 | |||
88 | /** |
||
89 | * Email Address, which is used to send notifications about e.g. new applications. |
||
90 | * |
||
91 | * @var String |
||
92 | * @ODM\Field(type="string") |
||
93 | **/ |
||
94 | protected $contactEmail; |
||
95 | |||
96 | /** |
||
97 | * the owner of a Job Posting |
||
98 | * |
||
99 | * @var UserInterface $user |
||
100 | * @ODM\ReferenceOne(targetDocument="\Auth\Entity\User", simple=true) |
||
101 | * @ODM\Index |
||
102 | */ |
||
103 | protected $user; |
||
104 | |||
105 | /** |
||
106 | * all applications of a certain jobad |
||
107 | * |
||
108 | * @var Collection |
||
109 | * @ODM\ReferenceMany(targetDocument="Applications\Entity\Application", simple=true, mappedBy="job", |
||
110 | * repositoryMethod="loadApplicationsForJob") |
||
111 | */ |
||
112 | protected $applications; |
||
113 | |||
114 | /** |
||
115 | * new applications |
||
116 | * |
||
117 | * @ODM\ReferenceMany(targetDocument="Applications\Entity\Application", |
||
118 | * repositoryMethod="loadUnreadApplicationsForJob", mappedBy="job") |
||
119 | * @var Int |
||
120 | */ |
||
121 | protected $unreadApplications; |
||
122 | |||
123 | /** |
||
124 | * language of the job posting. Languages are ISO 639-1 coded |
||
125 | * |
||
126 | * @var String |
||
127 | * @ODM\Field(type="string") |
||
128 | */ |
||
129 | protected $language; |
||
130 | |||
131 | /** |
||
132 | * location of the job posting. This is a plain text, which describes the location in |
||
133 | * search e.g. results. |
||
134 | * |
||
135 | * @var String |
||
136 | * @ODM\Field(type="string") |
||
137 | */ |
||
138 | protected $location; |
||
139 | |||
140 | /** |
||
141 | * locations of the job posting. This collection contains structured coordinates, |
||
142 | * postal codes, city, region, and country names |
||
143 | * |
||
144 | * @var Collection |
||
145 | * @ODM\EmbedMany(targetDocument="Location") |
||
146 | */ |
||
147 | protected $locations; |
||
148 | |||
149 | /** |
||
150 | * Link which points to the job posting |
||
151 | * |
||
152 | * @var String |
||
153 | * @ODM\Field(type="string") |
||
154 | **/ |
||
155 | protected $link; |
||
156 | |||
157 | /** |
||
158 | * publishing date of a job posting |
||
159 | * |
||
160 | * @var String |
||
161 | * @ODM\Field(type="tz_date") |
||
162 | */ |
||
163 | protected $datePublishStart; |
||
164 | |||
165 | /** |
||
166 | * end date of a job posting |
||
167 | * |
||
168 | * @var String |
||
169 | * @ODM\Field(type="tz_date") |
||
170 | */ |
||
171 | protected $datePublishEnd; |
||
172 | |||
173 | /** |
||
174 | * Status of the job posting |
||
175 | * |
||
176 | * @var Status |
||
177 | * @ODM\EmbedOne(targetDocument="Status") |
||
178 | * @ODM\Index |
||
179 | */ |
||
180 | protected $status; |
||
181 | |||
182 | /** |
||
183 | * History on an job posting |
||
184 | * |
||
185 | * @var Collection |
||
186 | * @ODM\EmbedMany(targetDocument="History") |
||
187 | */ |
||
188 | protected $history; |
||
189 | |||
190 | /** |
||
191 | * Flag, privacy policy is accepted or not. |
||
192 | * |
||
193 | * @var bool |
||
194 | * @ODM\Boolean |
||
195 | */ |
||
196 | protected $termsAccepted; |
||
197 | |||
198 | /** |
||
199 | * Reference of a job opening, on which an applicant can refer to. |
||
200 | * |
||
201 | * @var String |
||
202 | * @ODM\Field(type="string") |
||
203 | */ |
||
204 | protected $reference; |
||
205 | |||
206 | /** |
||
207 | * Unified Resource Locator to the company-Logo |
||
208 | * |
||
209 | * @var String |
||
210 | * @ODM\Field(type="string") |
||
211 | */ |
||
212 | protected $logoRef; |
||
213 | |||
214 | /** |
||
215 | * Template-Name |
||
216 | * |
||
217 | * @var String |
||
218 | * @ODM\Field(type="string") |
||
219 | */ |
||
220 | protected $template; |
||
221 | |||
222 | /** |
||
223 | * Application link. |
||
224 | * |
||
225 | * @var String |
||
226 | * @ODM\Field(type="string") |
||
227 | */ |
||
228 | protected $uriApply; |
||
229 | |||
230 | /** |
||
231 | * Unified Resource Locator the Yawik, which handled this job first - so |
||
232 | * does know who is the one who has commited this job. |
||
233 | * |
||
234 | * @var String |
||
235 | * @ODM\Field(type="string") |
||
236 | */ |
||
237 | protected $uriPublisher; |
||
238 | |||
239 | /** |
||
240 | * @var |
||
241 | * @ODM\EmbedMany(targetDocument="Publisher") |
||
242 | */ |
||
243 | protected $publisher; |
||
244 | |||
245 | /** |
||
246 | * The ATS mode entity. |
||
247 | * |
||
248 | * @var AtsMode |
||
249 | * @ODM\EmbedOne(targetDocument="AtsMode") |
||
250 | */ |
||
251 | protected $atsMode; |
||
252 | |||
253 | /** |
||
254 | * this must be enabled to use applications forms etc. for this job or |
||
255 | * to see number of applications in the list of applications |
||
256 | * |
||
257 | * @var Boolean |
||
258 | * |
||
259 | * @ODM\Boolean |
||
260 | */ |
||
261 | protected $atsEnabled; |
||
262 | |||
263 | /** |
||
264 | * Permissions |
||
265 | * |
||
266 | * @var PermissionsInterface |
||
267 | * @ODM\EmbedOne(targetDocument="\Core\Entity\Permissions") |
||
268 | */ |
||
269 | protected $permissions; |
||
270 | |||
271 | /** |
||
272 | * The actual name of the organization. |
||
273 | * |
||
274 | * @var TemplateValues |
||
275 | * @ODM\EmbedOne(targetDocument="\Jobs\Entity\TemplateValues") |
||
276 | */ |
||
277 | protected $templateValues; |
||
278 | |||
279 | |||
280 | /** |
||
281 | * Can contain various Portals |
||
282 | * |
||
283 | * @var array |
||
284 | * @ODM\Collection*/ |
||
285 | protected $portals = array(); |
||
286 | |||
287 | /** |
||
288 | * Flag indicating draft state of this job. |
||
289 | * |
||
290 | * @var bool |
||
291 | * @ODM\Boolean |
||
292 | */ |
||
293 | protected $isDraft = false; |
||
294 | |||
295 | /** |
||
296 | * Classifications |
||
297 | * |
||
298 | * @ODM\EmbedOne(targetDocument="\Jobs\Entity\Classifications") |
||
299 | * @var Classifications |
||
300 | * @since 0.29 |
||
301 | */ |
||
302 | protected $classifications; |
||
303 | |||
304 | /** |
||
305 | * Delete flag. |
||
306 | * |
||
307 | * @internal |
||
308 | * This is meant as a temporary flag, until |
||
309 | * SoftDelete is implemented. |
||
310 | * |
||
311 | * @ODM\Field(type="boolean") |
||
312 | * @var bool |
||
313 | * @since 0.29 |
||
314 | */ |
||
315 | protected $isDeleted = false; |
||
316 | |||
317 | /** |
||
318 | * |
||
319 | * @ODM\ReferenceMany(targetDocument="\Jobs\Entity\JobSnapshot", mappedBy="snapshotEntity", sort={"snapshotMeta.dateCreated"="desc"}) |
||
320 | * @var JobSnapshot |
||
321 | */ |
||
322 | protected $snapshots; |
||
323 | |||
324 | /** |
||
325 | * @ODM\ReferenceOne(targetDocument="\Jobs\Entity\JobSnapshot", mappedBy="snapshotEntity", sort={"snapshotMeta.dateCreated"="desc"}) |
||
326 | * |
||
327 | * @var JobSnapshot |
||
328 | */ |
||
329 | protected $latestSnapshot; |
||
330 | |||
331 | |||
332 | public function getSnapshots() |
||
336 | |||
337 | public function getLatestSnapshot() |
||
341 | |||
342 | public function hasSnapshotDraft() |
||
347 | |||
348 | /** |
||
349 | * @return string |
||
350 | */ |
||
351 | public function getResourceId() |
||
355 | |||
356 | /** |
||
357 | * @see \Jobs\Entity\JobInterface::setApplyId() |
||
358 | * @param String $applyId |
||
359 | * @return \Jobs\Entity\JobInterface |
||
360 | */ |
||
361 | public function setApplyId($applyId) |
||
366 | /** |
||
367 | * @see \Jobs\Entity\JobInterface::getApplyId() |
||
368 | * @return String |
||
369 | */ |
||
370 | public function getApplyId() |
||
378 | |||
379 | /** |
||
380 | * Gets the title of a job posting |
||
381 | * |
||
382 | * @return string |
||
383 | */ |
||
384 | public function getTitle() |
||
388 | |||
389 | /** |
||
390 | * Sets the title of a job posting |
||
391 | * |
||
392 | * @see \Jobs\Entity\JobInterface::setTitle() |
||
393 | * @param String $title |
||
394 | * @return \Jobs\Entity\JobInterface |
||
395 | */ |
||
396 | public function setTitle($title) |
||
401 | |||
402 | /** |
||
403 | * Gets the name oof the company. If there is an organization assigned to the |
||
404 | * job posting. Take the name of the organization. |
||
405 | * |
||
406 | * @param bool $useOrganizationEntity Get the name from the organization entity, if it is available. |
||
407 | * @see \Jobs\Entity\JobInterface::getCompany() |
||
408 | * @return string |
||
409 | */ |
||
410 | public function getCompany($useOrganizationEntity = true) |
||
418 | |||
419 | /** |
||
420 | * (non-PHPdoc) |
||
421 | * @see \Jobs\Entity\JobInterface::setCompany() |
||
422 | */ |
||
423 | public function setCompany($company) |
||
428 | |||
429 | /** |
||
430 | * (non-PHPdoc) |
||
431 | * @see \Jobs\Entity\JobInterface::getOrganization() |
||
432 | */ |
||
433 | public function getOrganization() |
||
437 | |||
438 | /** |
||
439 | * @inheritdoc |
||
440 | */ |
||
441 | public function setOrganization(OrganizationInterface $organization = null) |
||
453 | |||
454 | |||
455 | |||
456 | /** |
||
457 | * (non-PHPdoc) |
||
458 | * @see \Jobs\Entity\JobInterface::getContactEmail() |
||
459 | */ |
||
460 | public function getContactEmail() |
||
472 | |||
473 | /** |
||
474 | * (non-PHPdoc) |
||
475 | * @see \Jobs\Entity\JobInterface::setContactEmail() |
||
476 | */ |
||
477 | public function setContactEmail($email) |
||
482 | |||
483 | /** |
||
484 | * (non-PHPdoc) |
||
485 | * @see \Jobs\Entity\JobInterface::setLanguage() |
||
486 | */ |
||
487 | public function setLanguage($language) |
||
492 | /** |
||
493 | * (non-PHPdoc) |
||
494 | * @see \Jobs\Entity\JobInterface::getLanguage() |
||
495 | */ |
||
496 | public function getLanguage() |
||
500 | /** |
||
501 | * (non-PHPdoc) |
||
502 | * @see \Jobs\Entity\JobInterface::setLocation() |
||
503 | */ |
||
504 | public function setLocation($location) |
||
509 | /** |
||
510 | * (non-PHPdoc) |
||
511 | * @see \Jobs\Entity\JobInterface::getLocation() |
||
512 | */ |
||
513 | public function getLocation() |
||
526 | /** |
||
527 | * (non-PHPdoc) |
||
528 | * @see \Jobs\Entity\JobInterface::setLocations() |
||
529 | */ |
||
530 | public function setLocations($locations) |
||
535 | /** |
||
536 | * (non-PHPdoc) |
||
537 | * @see \Jobs\Entity\JobInterface::getLocations() |
||
538 | */ |
||
539 | public function getLocations() |
||
546 | /** |
||
547 | * (non-PHPdoc) |
||
548 | * @see \Jobs\Entity\JobInterface::setUser() |
||
549 | */ |
||
550 | View Code Duplication | public function setUser(UserInterface $user) |
|
559 | /** |
||
560 | * (non-PHPdoc) |
||
561 | * @see \Jobs\Entity\JobInterface::getUser() |
||
562 | */ |
||
563 | public function getUser() |
||
567 | |||
568 | View Code Duplication | public function unsetUser($removePermissions = true) |
|
579 | |||
580 | View Code Duplication | public function unsetOrganization($removePermissions = true) |
|
590 | |||
591 | /** |
||
592 | * (non-PHPdoc) |
||
593 | * @see \Jobs\Entity\JobInterface::setApplications() |
||
594 | */ |
||
595 | public function setApplications(Collection $applications) |
||
600 | |||
601 | /** |
||
602 | * (non-PHPdoc) |
||
603 | * @see \Jobs\Entity\JobInterface::getApplications() |
||
604 | */ |
||
605 | public function getApplications() |
||
609 | |||
610 | /** |
||
611 | * Gets the number of unread applications |
||
612 | * @return Collection |
||
613 | */ |
||
614 | public function getUnreadApplications() |
||
618 | /** |
||
619 | * (non-PHPdoc) |
||
620 | * @see \Jobs\Entity\JobInterface::getLink() |
||
621 | */ |
||
622 | public function getLink() |
||
626 | /** |
||
627 | * (non-PHPdoc) |
||
628 | * @see \Jobs\Entity\JobInterface::setLink() |
||
629 | */ |
||
630 | public function setLink($link) |
||
635 | /** |
||
636 | * (non-PHPdoc) |
||
637 | * @see \Jobs\Entity\JobInterface::getDatePublishStart() |
||
638 | */ |
||
639 | public function getDatePublishStart() |
||
643 | /** |
||
644 | * (non-PHPdoc) |
||
645 | * @param string $datePublishStart |
||
646 | * @see \Jobs\Entity\JobInterface::setDatePublishStart() |
||
647 | * @return $this |
||
648 | */ |
||
649 | View Code Duplication | public function setDatePublishStart($datePublishStart = null) |
|
660 | |||
661 | /** |
||
662 | * (non-PHPdoc) |
||
663 | * @see \Jobs\Entity\JobInterface::getDatePublishStart() |
||
664 | */ |
||
665 | public function getDatePublishEnd() |
||
669 | /** |
||
670 | * (non-PHPdoc) |
||
671 | * @param string $datePublishEnd |
||
672 | * @see \Jobs\Entity\JobInterface::setDatePublishEnd() |
||
673 | * @return $this |
||
674 | */ |
||
675 | View Code Duplication | public function setDatePublishEnd($datePublishEnd = null) |
|
686 | |||
687 | /** |
||
688 | * Modifies the state of an application. |
||
689 | * |
||
690 | * Creates a history entry. |
||
691 | * |
||
692 | * @param StatusInterface|string $status |
||
693 | * @param string $message |
||
694 | * @return Job |
||
695 | */ |
||
696 | View Code Duplication | public function changeStatus($status, $message = '[System]') |
|
706 | |||
707 | /** |
||
708 | * (non-PHPdoc) |
||
709 | * @see \Jobs\Entity\JobInterface::getStatus() |
||
710 | */ |
||
711 | public function getStatus() |
||
715 | /** |
||
716 | * (non-PHPdoc) |
||
717 | * @see \Jobs\Entity\JobInterface::setStatus() |
||
718 | */ |
||
719 | public function setStatus($status) |
||
726 | |||
727 | /** |
||
728 | * {@inheritDoc} |
||
729 | * @see JobInterface::setHistory() |
||
730 | * @return Job |
||
731 | */ |
||
732 | public function setHistory(Collection $history) |
||
737 | |||
738 | /** |
||
739 | * {@inheritDoc} |
||
740 | * @see JobInterface::getHistory() |
||
741 | */ |
||
742 | public function getHistory() |
||
749 | |||
750 | /** |
||
751 | * {@inheritDoc} |
||
752 | * @see JobInterface::setTermsAccepted() |
||
753 | * @return self |
||
754 | */ |
||
755 | public function setTermsAccepted($termsAccepted) |
||
760 | |||
761 | /** |
||
762 | * {qinheritDoc} |
||
763 | * @see JobInterface::getTermsAccepted() |
||
764 | */ |
||
765 | public function getTermsAccepted() |
||
769 | |||
770 | /** |
||
771 | * (non-PHPdoc) |
||
772 | * @see JobInterface::getReference() |
||
773 | */ |
||
774 | public function getReference() |
||
778 | /** |
||
779 | * (non-PHPdoc) |
||
780 | * @see JobInterface::setReference() |
||
781 | */ |
||
782 | public function setReference($reference) |
||
787 | |||
788 | public function setAtsMode(AtsMode $mode) |
||
794 | |||
795 | public function getAtsMode() |
||
803 | |||
804 | |||
805 | /** |
||
806 | * checks, weather a job is enabled for getting applications |
||
807 | * @return boolean |
||
808 | */ |
||
809 | public function getAtsEnabled() |
||
813 | /** |
||
814 | * enables a job add to receive applications |
||
815 | * |
||
816 | * @param boolean $atsEnabled |
||
817 | * @return \Jobs\Entity\Job |
||
818 | */ |
||
819 | public function setAtsEnabled($atsEnabled) |
||
824 | /** |
||
825 | * returns an uri to the organization logo. |
||
826 | * |
||
827 | * @return string |
||
828 | */ |
||
829 | public function getLogoRef() |
||
839 | /** |
||
840 | * Set the uri to the organisations logo |
||
841 | * |
||
842 | * @param string $logoRef |
||
843 | * @return \Jobs\Entity\Job |
||
844 | */ |
||
845 | public function setLogoRef($logoRef) |
||
850 | |||
851 | /** |
||
852 | * |
||
853 | * |
||
854 | * @return string |
||
855 | */ |
||
856 | public function getTemplate() |
||
864 | /** |
||
865 | * |
||
866 | * |
||
867 | * @param string $template name of the Template |
||
868 | * @return \Jobs\Entity\Job |
||
869 | */ |
||
870 | public function setTemplate($template) |
||
875 | |||
876 | |||
877 | |||
878 | /** |
||
879 | * Gets the uri of an application link |
||
880 | * |
||
881 | * @return String |
||
882 | */ |
||
883 | public function getUriApply() |
||
887 | |||
888 | /** |
||
889 | * Sets the uri of an application link |
||
890 | * |
||
891 | * @param String $uriApply |
||
892 | * @return \Jobs\Entity\Job |
||
893 | */ |
||
894 | public function setUriApply($uriApply) |
||
899 | |||
900 | /** |
||
901 | * Gets the uri of a publisher |
||
902 | * |
||
903 | * @return String |
||
904 | */ |
||
905 | public function getUriPublisher() |
||
909 | /** |
||
910 | * |
||
911 | * @param String $uriPublisher |
||
912 | * @return \Jobs\Entity\Job |
||
913 | */ |
||
914 | public function setUriPublisher($uriPublisher) |
||
919 | |||
920 | /** |
||
921 | * @param $key |
||
922 | * @return mixed |
||
923 | */ |
||
924 | public function getPublisher($key) |
||
939 | |||
940 | public function setPublisherReference($key, $reference) |
||
946 | |||
947 | |||
948 | /** |
||
949 | * (non-PHPdoc) |
||
950 | * @see \Core\Entity\PermissionsAwareInterface::getPermissions() |
||
951 | */ |
||
952 | public function getPermissions() |
||
964 | |||
965 | /** |
||
966 | * (non-PHPdoc) |
||
967 | * @see \Core\Entity\PermissionsAwareInterface::setPermissions() |
||
968 | */ |
||
969 | public function setPermissions(PermissionsInterface $permissions) |
||
974 | |||
975 | /** |
||
976 | * Gets the Values of a job template |
||
977 | * |
||
978 | * @return TemplateValues |
||
979 | */ |
||
980 | public function getTemplateValues() |
||
987 | |||
988 | /** |
||
989 | * @param EntityInterface $templateValues |
||
990 | * |
||
991 | * @return $this |
||
992 | */ |
||
993 | public function setTemplateValues(EntityInterface $templateValues = null) |
||
1001 | |||
1002 | /** |
||
1003 | * Sets the list of channels where a job opening should be published |
||
1004 | * |
||
1005 | * @param Array |
||
1006 | * {@inheritdoc} |
||
1007 | */ |
||
1008 | public function setPortals(array $portals) |
||
1013 | |||
1014 | /** |
||
1015 | * Gets the list of channels where the job opening should be published |
||
1016 | * |
||
1017 | * {@inheritdoc} |
||
1018 | * @return array |
||
1019 | */ |
||
1020 | public function getPortals() |
||
1024 | |||
1025 | /** |
||
1026 | * Gets the flag indicating the draft state. |
||
1027 | * |
||
1028 | * @return bool |
||
1029 | */ |
||
1030 | public function isDraft() |
||
1034 | |||
1035 | /** |
||
1036 | * Sets the flag indicating the draft state. |
||
1037 | * |
||
1038 | * @param boolean $flag |
||
1039 | * @return DraftableEntityInterface |
||
1040 | */ |
||
1041 | public function setIsDraft($flag) |
||
1046 | |||
1047 | /** |
||
1048 | * Gets the status and checks it against 'active' |
||
1049 | * |
||
1050 | * @return bool |
||
1051 | */ |
||
1052 | public function isActive() |
||
1056 | |||
1057 | /** |
||
1058 | * @return Job |
||
1059 | */ |
||
1060 | public function makeSnapshot() |
||
1065 | |||
1066 | /** |
||
1067 | * @return array|mixed |
||
1068 | */ |
||
1069 | public function getSnapshotGenerator() |
||
1078 | |||
1079 | /** |
||
1080 | * @param \Jobs\Entity\Classifications $classifications |
||
1081 | * |
||
1082 | * @return self |
||
1083 | */ |
||
1084 | public function setClassifications($classifications) |
||
1090 | |||
1091 | /** |
||
1092 | * @return \Jobs\Entity\Classifications |
||
1093 | */ |
||
1094 | public function getClassifications() |
||
1102 | |||
1103 | /** |
||
1104 | * Mark this job as deleted. |
||
1105 | * |
||
1106 | * @internal |
||
1107 | * This is meant as temporary solution, until |
||
1108 | * SoftDelete is implemented. |
||
1109 | * |
||
1110 | * @return self |
||
1111 | * @since 0.29 |
||
1112 | */ |
||
1113 | public function delete() |
||
1119 | |||
1120 | public function isDeleted() |
||
1124 | |||
1125 | |||
1126 | } |
||
1127 |