summaryrefslogtreecommitdiffstats
path: root/tests/stubs/oc_comments_comment.php
blob: a845626398a78c8a71e9cb475abde3f70d806a19 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

namespace OC\Comments {
	class Comment implements \OCP\Comments\IComment {
		public function __construct(array $data = null) {
		}
		public function setMessage($message, $maxLength = self::MAX_MESSAGE_LENGTH) {
		}
	}
}