File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -355,14 +355,14 @@ public function schema($schema = null) {
355
355
*
356
356
* {{{
357
357
* protected function _initializeSchema(\Cake\Database\Schema\Table $table) {
358
- * $table->columnType('preferences', 'json');
359
- * return $table;
358
+ * $table->columnType('preferences', 'json');
359
+ * return $table;
360
360
* }
361
361
* }}}
362
362
*
363
- * @api
364
363
* @param \Cake\Database\Schema\Table $table The table definition fetched from database.
365
364
* @return \Cake\Database\Schema\Table the altered schema
365
+ * @api
366
366
*/
367
367
protected function _initializeSchema (Schema $ table ) {
368
368
return $ table ;
Original file line number Diff line number Diff line change @@ -1089,13 +1089,13 @@ public function testNamespaceSplit() {
1089
1089
*/
1090
1090
public function testStackTrace () {
1091
1091
ob_start ();
1092
- list ($ _ , $ expected ) = [stackTrace (), \Cake \Utility \Debugger::trace ()];
1092
+ list ($ r , $ expected ) = [stackTrace (), \Cake \Utility \Debugger::trace ()];
1093
1093
$ result = ob_get_clean ();
1094
1094
$ this ->assertEquals ($ expected , $ result );
1095
1095
1096
1096
$ opts = ['args ' => true ];
1097
1097
ob_start ();
1098
- list ($ _ , $ expected ) = [stackTrace ($ opts ), \Cake \Utility \Debugger::trace ($ opts )];
1098
+ list ($ r , $ expected ) = [stackTrace ($ opts ), \Cake \Utility \Debugger::trace ($ opts )];
1099
1099
$ result = ob_get_clean ();
1100
1100
$ this ->assertEquals ($ expected , $ result );
1101
1101
}
You can’t perform that action at this time.
0 commit comments