Completed
Push — add/legacy-files ( 4cc789...bef25d )
by
unknown
157:43 queued 148:20
created
packages/analyzer/src/PersistentList.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
 
32 32
 	/**
33 33
 	 * Saves the items to a file and returns the file contents
34
+	 * @param string $file_path
34 35
 	 */
35 36
 	public function save( $file_path, $allow_empty = true ) {
36 37
 
Please login to merge, or discard this patch.
packages/analyzer/src/Warnings/Warning.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -10,6 +10,10 @@
 block discarded – undo
10 10
 	public $message;
11 11
 	public $old_declaration;
12 12
 
13
+	/**
14
+	 * @param string $type
15
+	 * @param string $message
16
+	 */
13 17
 	function __construct( $type, $path, $line, $message, $old_declaration ) {
14 18
 		$this->type = $type;
15 19
 		$this->path = $path;
Please login to merge, or discard this patch.