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

@@ 198-206 (lines=9) @@
195
	/**
196
	 * @return void
197
	 */
198
	public function renderListing()
199
	{
200
		$model = $this->getModel();
201
		$template = $this->getTemplate();
202
203
		$template->programs = $model->all();
204
		$template->mid = $this->meetingId;
205
		$template->heading = $this->heading;
206
	}
207
208
	/**
209
	 * @return void