Code Duplication    Length = 9-9 lines in 3 locations

app/presenters/BlockPresenter.php 1 location

@@ 268-276 (lines=9) @@
265
	/**
266
	 * @return void
267
	 */
268
	public function renderListing()
269
	{
270
		$model = $this->getModel();
271
		$template = $this->getTemplate();
272
273
		$template->blocks = $model->all();
274
		$template->mid = $this->meetingId;
275
		$template->heading = $this->heading;
276
	}
277
278
	/**
279
	 * @return Emailer

app/presenters/CategoryPresenter.php 1 location

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

app/presenters/ProgramPresenter.php 1 location

@@ 220-228 (lines=9) @@
217
	/**
218
	 * @return void
219
	 */
220
	public function renderListing()
221
	{
222
		$model = $this->getModel();
223
		$template = $this->getTemplate();
224
225
		$template->programs = $model->all();
226
		$template->mid = $this->meetingId;
227
		$template->heading = $this->heading;
228
	}
229
230
	/**
231
	 * @return void