Code Duplication    Length = 9-9 lines in 2 locations

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/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