Code Duplication    Length = 9-9 lines in 2 locations

src/includes/classes/entity/attr/field.php 1 location

@@ 47-55 (lines=9) @@
44
	/**
45
	 * @since 1.0.0
46
	 */
47
	public function get_storage_info() {
48
		return array(
49
			'type' => $this->storage_type,
50
			'info' => array(
51
				'type'  => 'field',
52
				'field' => $this->field,
53
			),
54
		);
55
	}
56
}
57
58
// EOF

src/includes/classes/entity/relationship/stored/field.php 1 location

@@ 47-55 (lines=9) @@
44
	/**
45
	 * @since 1.0.0
46
	 */
47
	public function get_storage_info() {
48
		return array(
49
			'type' => $this->storage_type,
50
			'info' => array(
51
				'type' => 'field',
52
				'field' => $this->related_ids_field,
53
			),
54
		);
55
	}
56
}
57
58
// EOF