Code Duplication    Length = 9-9 lines in 3 locations

app/presenters/CategoryPresenter.php 1 location

@@ 89-97 (lines=9) @@
86
	/**
87
	 * @return void
88
	 */
89
	public function renderListing()
90
	{
91
		$model = $this->getModel();
92
		$template = $this->getTemplate();
93
94
		$template->categories = $model->all();
95
		$template->mid = $this->meetingId;
96
		$template->heading = $this->heading;
97
	}
98
99
	/**
100
	 * @return void

app/presenters/BlockPresenter.php 1 location

@@ 227-235 (lines=9) @@
224
	/**
225
	 * @return void
226
	 */
227
	public function renderListing()
228
	{
229
		$model = $this->getModel();
230
		$template = $this->getTemplate();
231
232
		$template->blocks = $model->all();
233
		$template->mid = $this->meetingId;
234
		$template->heading = $this->heading;
235
	}
236
237
	/**
238
	 * @return Emailer

app/presenters/ProgramPresenter.php 1 location

@@ 248-256 (lines=9) @@
245
	/**
246
	 * @return void
247
	 */
248
	public function renderListing()
249
	{
250
		$model = $this->getModel();
251
		$template = $this->getTemplate();
252
253
		$template->programs = $model->all();
254
		$template->mid = $this->meetingId;
255
		$template->heading = $this->heading;
256
	}
257
258
	/**
259
	 * @return void