@@ -447,6 +447,10 @@ discard block |
||
| 447 | 447 | } |
| 448 | 448 | |
| 449 | 449 | // functions |
| 450 | + |
|
| 451 | + /** |
|
| 452 | + * @param string $name |
|
| 453 | + */ |
|
| 450 | 454 | public function get_callable( $name ) { |
| 451 | 455 | $value = get_option( 'jetpack_' . $name ); |
| 452 | 456 | |
@@ -738,6 +742,9 @@ discard block |
||
| 738 | 742 | return $histogram; |
| 739 | 743 | } |
| 740 | 744 | |
| 745 | + /** |
|
| 746 | + * @param string|null $id_column |
|
| 747 | + */ |
|
| 741 | 748 | private function table_checksum( $table, $columns, $id_column, $where_sql = '1=1', $min_id = null, $max_id = null, $strip_non_ascii = true, $salt = '' ) { |
| 742 | 749 | global $wpdb; |
| 743 | 750 | |
@@ -791,6 +798,9 @@ discard block |
||
| 791 | 798 | return 'sum'; |
| 792 | 799 | } |
| 793 | 800 | |
| 801 | + /** |
|
| 802 | + * @param string $where_sql |
|
| 803 | + */ |
|
| 794 | 804 | private function meta_count( $table, $where_sql, $min_id, $max_id ) { |
| 795 | 805 | global $wpdb; |
| 796 | 806 | |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | * @param string $vendorPath Path to the vendor directory. |
| 161 | 161 | * @param string $basePath Base Path. |
| 162 | 162 | * |
| 163 | - * @return array $classMap |
|
| 163 | + * @return string $classMap |
|
| 164 | 164 | */ |
| 165 | 165 | private function getClassMap( array $autoloads, Filesystem $filesystem, $vendorPath, $basePath ) { |
| 166 | 166 | $blacklist = null; |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | /** |
| 225 | 225 | * Generate the PHP that will be used in the autoload_classmap_package.php files. |
| 226 | 226 | * |
| 227 | - * @param srting $classMap class map array string that is to be written out to the file. |
|
| 227 | + * @param string $classMap class map array string that is to be written out to the file. |
|
| 228 | 228 | * |
| 229 | 229 | * @return string |
| 230 | 230 | */ |
@@ -14,6 +14,9 @@ |
||
| 14 | 14 | public $line; |
| 15 | 15 | public $func_name; |
| 16 | 16 | |
| 17 | + /** |
|
| 18 | + * @param string $func_name |
|
| 19 | + */ |
|
| 17 | 20 | public function __construct( $path, $line, $func_name ) { |
| 18 | 21 | $this->path = $path; |
| 19 | 22 | $this->line = $line; |
@@ -33,6 +33,9 @@ |
||
| 33 | 33 | } |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | + /** |
|
| 37 | + * @param string $root |
|
| 38 | + */ |
|
| 36 | 39 | public function scan_dir( $root, $exclude = array() ) { |
| 37 | 40 | |
| 38 | 41 | if ( is_null( $exclude ) || ! is_array( $exclude ) ) { |
@@ -37,6 +37,9 @@ |
||
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | + /** |
|
| 41 | + * @param string $root |
|
| 42 | + */ |
|
| 40 | 43 | public function scan_dir( $root, $exclude = array() ) { |
| 41 | 44 | $filter = function ( $file, $key, $iterator ) use ( $exclude ) { |
| 42 | 45 | if ( $iterator->hasChildren() && ! in_array( $file->getFilename(), $exclude ) ) { |
@@ -9,6 +9,9 @@ |
||
| 9 | 9 | private $invocations; |
| 10 | 10 | private $file_path; |
| 11 | 11 | |
| 12 | + /** |
|
| 13 | + * @param $invocations |
|
| 14 | + */ |
|
| 12 | 15 | public function __construct( $file_path, $invocations ) { |
| 13 | 16 | $this->file_path = $file_path; |
| 14 | 17 | $this->invocations = $invocations; |
@@ -31,6 +31,7 @@ |
||
| 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 | |
@@ -10,6 +10,10 @@ |
||
| 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; |
@@ -11,6 +11,9 @@ |
||
| 11 | 11 | private $declarations; |
| 12 | 12 | private $current_relative_path; |
| 13 | 13 | |
| 14 | + /** |
|
| 15 | + * @param $declarations |
|
| 16 | + */ |
|
| 14 | 17 | public function __construct( $current_relative_path, $declarations ) { |
| 15 | 18 | $this->current_relative_path = $current_relative_path; |
| 16 | 19 | $this->declarations = $declarations; |