|
163 | 163 | 'datetimefractional' => \Cake\Database\Type\DateTimeFractionalType::class, |
164 | 164 | 'decimal' => \Cake\Database\Type\DecimalType::class, |
165 | 165 | 'float' => \Cake\Database\Type\FloatType::class, |
| 166 | + 'geometry' => \Cake\Database\Type\StringType::class, |
166 | 167 | 'integer' => \Cake\Database\Type\IntegerType::class, |
167 | 168 | 'json' => \Cake\Database\Type\JsonType::class, |
| 169 | + 'linestring' => \Cake\Database\Type\StringType::class, |
| 170 | + 'nativeuuid' => \Cake\Database\Type\UuidType::class, |
| 171 | + 'point' => \Cake\Database\Type\StringType::class, |
| 172 | + 'polygon' => \Cake\Database\Type\StringType::class, |
168 | 173 | 'smallinteger' => \Cake\Database\Type\IntegerType::class, |
169 | 174 | 'string' => \Cake\Database\Type\StringType::class, |
170 | 175 | 'text' => \Cake\Database\Type\StringType::class, |
|
190 | 195 | 'datetimefractional', |
191 | 196 | 'decimal', |
192 | 197 | 'float', |
| 198 | + 'geometry', |
193 | 199 | 'integer', |
194 | 200 | 'json', |
| 201 | + 'linestring', |
| 202 | + 'nativeuuid', |
| 203 | + 'point', |
| 204 | + 'polygon', |
195 | 205 | 'smallinteger', |
196 | 206 | 'string', |
197 | 207 | 'text', |
|
229 | 239 | ]), |
230 | 240 | ); |
231 | 241 |
|
| 242 | + override( |
| 243 | + \Cake\Http\ServerRequest::getAttribute(0), |
| 244 | + map([ |
| 245 | + 'base' => 'string', |
| 246 | + 'cspScriptNonce' => 'string', |
| 247 | + 'cspStyleNonce' => 'string', |
| 248 | + 'csrfToken' => 'string', |
| 249 | + 'formTokenData' => 'array', |
| 250 | + 'here' => 'string', |
| 251 | + 'paging' => 'array', |
| 252 | + 'params' => 'array', |
| 253 | + 'route' => \Cake\Routing\Route\Route::class, |
| 254 | + 'session' => \Cake\Http\Session::class, |
| 255 | + 'webroot' => 'string', |
| 256 | + ]), |
| 257 | + ); |
| 258 | + |
232 | 259 | expectedArguments( |
233 | 260 | \Cake\Http\ServerRequest::getParam(), |
234 | 261 | 0, |
|
303 | 330 | ]), |
304 | 331 | ); |
305 | 332 |
|
| 333 | + override( |
| 334 | + \Cake\ORM\Table::getBehavior(), |
| 335 | + map([ |
| 336 | + 'CounterCache' => \Cake\ORM\Behavior\CounterCacheBehavior::class, |
| 337 | + 'Timed' => \DebugKit\Model\Behavior\TimedBehavior::class, |
| 338 | + 'Timestamp' => \Cake\ORM\Behavior\TimestampBehavior::class, |
| 339 | + 'Translate' => \Cake\ORM\Behavior\TranslateBehavior::class, |
| 340 | + 'Tree' => \Cake\ORM\Behavior\TreeBehavior::class, |
| 341 | + ]), |
| 342 | + ); |
| 343 | + |
| 344 | + expectedArguments( |
| 345 | + \Cake\ORM\Table::hasBehavior(), |
| 346 | + 0, |
| 347 | + 'CounterCache', |
| 348 | + 'Timed', |
| 349 | + 'Timestamp', |
| 350 | + 'Translate', |
| 351 | + 'Tree', |
| 352 | + ); |
| 353 | + |
306 | 354 | override( |
307 | 355 | \Cake\ORM\Table::hasMany(0), |
308 | 356 | map([ |
|
422 | 470 | 'plugin.Bake.Posts', |
423 | 471 | 'plugin.Bake.ProductVersions', |
424 | 472 | 'plugin.Bake.Products', |
| 473 | + 'plugin.Bake.Relations', |
425 | 474 | 'plugin.Bake.Tags', |
426 | 475 | 'plugin.Bake.TodoItems', |
427 | 476 | 'plugin.Bake.TodoItemsTodoLabels', |
|
793 | 842 | ); |
794 | 843 |
|
795 | 844 | expectedArguments( |
796 | | - \Migrations\AbstractMigration::table(), |
| 845 | + \Migrations\BaseMigration::table(), |
797 | 846 | 0, |
798 | 847 | argumentsSet('tableNames'), |
799 | 848 | ); |
800 | 849 |
|
801 | 850 | expectedArguments( |
802 | | - \Migrations\AbstractSeed::table(), |
| 851 | + \Migrations\BaseSeed::table(), |
803 | 852 | 0, |
804 | 853 | argumentsSet('tableNames'), |
805 | 854 | ); |
806 | 855 |
|
807 | 856 | expectedArguments( |
808 | | - \Migrations\Table::addColumn(), |
| 857 | + \Migrations\Db\Table::addColumn(), |
809 | 858 | 0, |
810 | 859 | argumentsSet('columnNames'), |
811 | 860 | ); |
812 | 861 |
|
813 | 862 | expectedArguments( |
814 | | - \Migrations\Table::addColumn(), |
| 863 | + \Migrations\Db\Table::addColumn(), |
815 | 864 | 1, |
816 | 865 | argumentsSet('columnTypes'), |
817 | 866 | ); |
818 | 867 |
|
819 | 868 | expectedArguments( |
820 | | - \Migrations\Table::changeColumn(), |
| 869 | + \Migrations\Db\Table::changeColumn(), |
821 | 870 | 0, |
822 | 871 | argumentsSet('columnNames'), |
823 | 872 | ); |
824 | 873 |
|
825 | 874 | expectedArguments( |
826 | | - \Migrations\Table::changeColumn(), |
| 875 | + \Migrations\Db\Table::changeColumn(), |
827 | 876 | 1, |
828 | 877 | argumentsSet('columnTypes'), |
829 | 878 | ); |
830 | 879 |
|
831 | 880 | expectedArguments( |
832 | | - \Migrations\Table::hasColumn(), |
| 881 | + \Migrations\Db\Table::hasColumn(), |
833 | 882 | 0, |
834 | 883 | argumentsSet('columnNames'), |
835 | 884 | ); |
836 | 885 |
|
837 | 886 | expectedArguments( |
838 | | - \Migrations\Table::removeColumn(), |
| 887 | + \Migrations\Db\Table::removeColumn(), |
839 | 888 | 0, |
840 | 889 | argumentsSet('columnNames'), |
841 | 890 | ); |
842 | 891 |
|
843 | 892 | expectedArguments( |
844 | | - \Migrations\Table::renameColumn(), |
| 893 | + \Migrations\Db\Table::renameColumn(), |
845 | 894 | 0, |
846 | 895 | argumentsSet('columnNames'), |
847 | 896 | ); |
848 | 897 |
|
849 | 898 | expectedArguments( |
850 | | - \Migrations\Table::renameColumn(), |
| 899 | + \Migrations\Db\Table::renameColumn(), |
851 | 900 | 1, |
852 | 901 | argumentsSet('columnNames'), |
853 | 902 | ); |
854 | 903 |
|
855 | | - expectedArguments( |
856 | | - \Phinx\Seed\AbstractSeed::table(), |
857 | | - 0, |
858 | | - argumentsSet('tableNames'), |
859 | | - ); |
860 | | - |
861 | 904 | expectedArguments( |
862 | 905 | \__d(), |
863 | 906 | 0, |
|
886 | 929 | 'CONTENT_TYPE', |
887 | 930 | 'COREPACK_ENABLE_DOWNLOAD_PROMPT', |
888 | 931 | 'COREPACK_HOME', |
| 932 | + 'DDEV_APPROOT', |
889 | 933 | 'DDEV_COMPOSER_ROOT', |
890 | 934 | 'DDEV_DATABASE', |
891 | 935 | 'DDEV_DATABASE_FAMILY', |
892 | 936 | 'DDEV_DOCROOT', |
893 | 937 | 'DDEV_FILES_DIR', |
894 | 938 | 'DDEV_FILES_DIRS', |
| 939 | + 'DDEV_GOARCH', |
| 940 | + 'DDEV_GOOS', |
895 | 941 | 'DDEV_HOSTNAME', |
896 | 942 | 'DDEV_MUTAGEN_ENABLED', |
897 | 943 | 'DDEV_PHP_VERSION', |
898 | 944 | 'DDEV_PRIMARY_URL', |
| 945 | + 'DDEV_PRIMARY_URL_PORT', |
| 946 | + 'DDEV_PRIMARY_URL_WITHOUT_PORT', |
899 | 947 | 'DDEV_PROJECT', |
900 | 948 | 'DDEV_PROJECT_TYPE', |
901 | 949 | 'DDEV_ROUTER_HTTPS_PORT', |
902 | 950 | 'DDEV_ROUTER_HTTP_PORT', |
| 951 | + 'DDEV_SCHEME', |
903 | 952 | 'DDEV_SITENAME', |
904 | 953 | 'DDEV_TLD', |
905 | 954 | 'DDEV_VERSION', |
906 | 955 | 'DDEV_WEBSERVER_TYPE', |
907 | 956 | 'DDEV_WEB_ENTRYPOINT', |
908 | 957 | 'DDEV_XDEBUG_ENABLED', |
| 958 | + 'DDEV_XHPROF_MODE', |
909 | 959 | 'DEBIAN_FRONTEND', |
910 | 960 | 'DEPLOY_NAME', |
911 | 961 | 'DOCKER_IP', |
912 | 962 | 'DOCROOT', |
913 | 963 | 'DOCUMENT_ROOT', |
914 | 964 | 'DOCUMENT_URI', |
915 | 965 | 'DRUSH_OPTIONS_URI', |
| 966 | + 'EXECIGNORE', |
916 | 967 | 'GATEWAY_INTERFACE', |
917 | 968 | 'GIT_ASKPASS', |
918 | | - 'GOARCH', |
919 | | - 'GOOS', |
920 | 969 | 'HISTFILE', |
921 | 970 | 'HOME', |
922 | 971 | 'HOSTNAME', |
|
938 | 987 | 'LS_COLORS', |
939 | 988 | 'MH_SMTP_BIND_ADDR', |
940 | 989 | 'MYSQL_HISTFILE', |
941 | | - 'MYSQL_PWD', |
942 | 990 | 'NGINX_SITE_TEMPLATE', |
943 | 991 | 'NODE_EXTRA_CA_CERTS', |
944 | 992 | 'NVM_CD_FLAGS', |
|
973 | 1021 | 'SHELL_VERBOSITY', |
974 | 1022 | 'SHLVL', |
975 | 1023 | 'SSH_AUTH_SOCK', |
| 1024 | + 'START_SCRIPT_TIMEOUT', |
976 | 1025 | 'TERM', |
977 | 1026 | 'TERMINUS_CACHE_DIR', |
978 | 1027 | 'TERMINUS_HIDE_UPDATE_MESSAGE', |
|
1000 | 1049 |
|
1001 | 1050 | registerArgumentsSet( |
1002 | 1051 | 'columnNames', |
1003 | | - |
| 1052 | + 'content', |
| 1053 | + 'created', |
| 1054 | + 'id', |
| 1055 | + 'modified', |
| 1056 | + 'status', |
| 1057 | + 'title', |
1004 | 1058 | ); |
1005 | 1059 |
|
1006 | 1060 | registerArgumentsSet( |
|
1072 | 1126 | 'Error.log', |
1073 | 1127 | 'Error.skipLog', |
1074 | 1128 | 'Error.trace', |
| 1129 | + 'IdeHelper', |
| 1130 | + 'IdeHelper.arrayAsGenerics', |
| 1131 | + 'IdeHelper.objectAsGenerics', |
| 1132 | + 'IdeHelper.preferLinkOverUsesInTests', |
| 1133 | + 'IdeHelper.templateCollectionObject', |
1075 | 1134 | 'Migrations', |
1076 | 1135 | 'Migrations.backend', |
1077 | 1136 | 'Security', |
|
1128 | 1187 |
|
1129 | 1188 | registerArgumentsSet( |
1130 | 1189 | 'tableNames', |
1131 | | - |
| 1190 | + 'articles', |
1132 | 1191 | ); |
1133 | 1192 |
|
1134 | 1193 | registerArgumentsSet( |
|
0 commit comments