Skip to content

Commit 327c41c

Browse files
authored
Merge branch 'develop' into patch-30
2 parents 8bf098a + 1c01ed6 commit 327c41c

232 files changed

Lines changed: 514 additions & 500 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app/Config/Autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function __construct()
3636
* to their location on the file system. These are used by the
3737
* Autoloader to locate files the first time they have been instantiated.
3838
*
39-
* The '/application' and '/system' directories are already mapped for
39+
* The '/app' and '/system' directories are already mapped for
4040
* you. You may change the name of the 'App' namespace if you wish,
4141
* but this should be done prior to creating any namespaced classes,
4242
* else you will need to modify all of those classes for this to work.

app/Config/Paths.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* Holds the paths that are used by the system to
5-
* locate the main directories, application, system, etc.
5+
* locate the main directories, app, system, etc.
66
* Modifying these allows you to re-structure your application,
77
* share a system folder between multiple applications, and more.
88
*
@@ -45,7 +45,7 @@ class Paths
4545
* This variable must contain the name of your "writable" directory.
4646
* The writable directory allows you to group all directories that
4747
* need write permission to a single place that can be tucked away
48-
* for maximum security, keeping it out of the application and/or
48+
* for maximum security, keeping it out of the app and/or
4949
* system directories.
5050
*/
5151
public $writableDirectory = __DIR__ . '/../../writable';
@@ -58,7 +58,7 @@ class Paths
5858
* This variable must contain the name of your "tests" directory.
5959
* The writable directory allows you to group all directories that
6060
* need write permission to a single place that can be tucked away
61-
* for maximum security, keeping it out of the application and/or
61+
* for maximum security, keeping it out of the app and/or
6262
* system directories.
6363
*/
6464
public $testsDirectory = __DIR__ . '/../../tests';
@@ -70,7 +70,7 @@ class Paths
7070
*
7171
* This variable must contain the name of the directory that
7272
* contains the view files used by your application. By
73-
* default this is in `application/Views`. This value
73+
* default this is in `app/Views`. This value
7474
* is used when no value is provided to `Services::renderer()`.
7575
*/
7676
public $viewDirectory = __DIR__ . '/../../app/Views';

app/Views/welcome_message.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,15 @@
111111

112112
<pre>
113113
<code>
114-
application/Views/welcome_message.php
114+
app/Views/welcome_message.php
115115
</code>
116116
</pre>
117117

118118
<p>The corresponding controller for this page is found at:</p>
119119

120120
<pre>
121121
<code>
122-
application/Controllers/Home.php
122+
app/Controllers/Home.php
123123
</code>
124124
</pre>
125125

license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2018 British Columbia Institute of Technology
3+
Copyright (c) 2014-2019 British Columbia Institute of Technology
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

system/API/ResponseTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* This content is released under the MIT License (MIT)
99
*
10-
* Copyright (c) 2014-2018 British Columbia Institute of Technology
10+
* Copyright (c) 2014-2019 British Columbia Institute of Technology
1111
*
1212
* Permission is hereby granted, free of charge, to any person obtaining a copy
1313
* of this software and associated documentation files (the "Software"), to deal
@@ -29,7 +29,7 @@
2929
*
3030
* @package CodeIgniter
3131
* @author CodeIgniter Dev Team
32-
* @copyright 2014-2018 British Columbia Institute of Technology (https://bcit.ca/)
32+
* @copyright 2014-2019 British Columbia Institute of Technology (https://bcit.ca/)
3333
* @license https://opensource.org/licenses/MIT MIT License
3434
* @link https://codeigniter.com
3535
* @since Version 3.0.0

system/Autoloader/Autoloader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* This content is released under the MIT License (MIT)
99
*
10-
* Copyright (c) 2014-2018 British Columbia Institute of Technology
10+
* Copyright (c) 2014-2019 British Columbia Institute of Technology
1111
*
1212
* Permission is hereby granted, free of charge, to any person obtaining a copy
1313
* of this software and associated documentation files (the "Software"), to deal
@@ -29,7 +29,7 @@
2929
*
3030
* @package CodeIgniter
3131
* @author CodeIgniter Dev Team
32-
* @copyright 2014-2018 British Columbia Institute of Technology (https://bcit.ca/)
32+
* @copyright 2014-2019 British Columbia Institute of Technology (https://bcit.ca/)
3333
* @license https://opensource.org/licenses/MIT MIT License
3434
* @link https://codeigniter.com
3535
* @since Version 3.0.0

system/Autoloader/FileLocator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* This content is released under the MIT License (MIT)
99
*
10-
* Copyright (c) 2014-2018 British Columbia Institute of Technology
10+
* Copyright (c) 2014-2019 British Columbia Institute of Technology
1111
*
1212
* Permission is hereby granted, free of charge, to any person obtaining a copy
1313
* of this software and associated documentation files (the "Software"), to deal
@@ -29,7 +29,7 @@
2929
*
3030
* @package CodeIgniter
3131
* @author CodeIgniter Dev Team
32-
* @copyright 2014-2018 British Columbia Institute of Technology (https://bcit.ca/)
32+
* @copyright 2014-2019 British Columbia Institute of Technology (https://bcit.ca/)
3333
* @license https://opensource.org/licenses/MIT MIT License
3434
* @link https://codeigniter.com
3535
* @since Version 3.0.0

system/CLI/BaseCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* This content is released under the MIT License (MIT)
99
*
10-
* Copyright (c) 2014-2018 British Columbia Institute of Technology
10+
* Copyright (c) 2014-2019 British Columbia Institute of Technology
1111
*
1212
* Permission is hereby granted, free of charge, to any person obtaining a copy
1313
* of this software and associated documentation files (the "Software"), to deal
@@ -29,7 +29,7 @@
2929
*
3030
* @package CodeIgniter
3131
* @author CodeIgniter Dev Team
32-
* @copyright 2014-2018 British Columbia Institute of Technology (https://bcit.ca/)
32+
* @copyright 2014-2019 British Columbia Institute of Technology (https://bcit.ca/)
3333
* @license https://opensource.org/licenses/MIT MIT License
3434
* @link https://codeigniter.com
3535
* @since Version 3.0.0

system/CLI/CLI.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* This content is released under the MIT License (MIT)
99
*
10-
* Copyright (c) 2014-2018 British Columbia Institute of Technology
10+
* Copyright (c) 2014-2019 British Columbia Institute of Technology
1111
*
1212
* Permission is hereby granted, free of charge, to any person obtaining a copy
1313
* of this software and associated documentation files (the "Software"), to deal
@@ -29,7 +29,7 @@
2929
*
3030
* @package CodeIgniter
3131
* @author CodeIgniter Dev Team
32-
* @copyright 2014-2018 British Columbia Institute of Technology (https://bcit.ca/)
32+
* @copyright 2014-2019 British Columbia Institute of Technology (https://bcit.ca/)
3333
* @license https://opensource.org/licenses/MIT MIT License
3434
* @link https://codeigniter.com
3535
* @since Version 3.0.0

system/CLI/CommandRunner.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* This content is released under the MIT License (MIT)
1010
*
11-
* Copyright (c) 2014-2018 British Columbia Institute of Technology
11+
* Copyright (c) 2014-2019 British Columbia Institute of Technology
1212
*
1313
* Permission is hereby granted, free of charge, to any person obtaining a copy
1414
* of this software and associated documentation files (the "Software"), to deal
@@ -30,7 +30,7 @@
3030
*
3131
* @package CodeIgniter
3232
* @author CodeIgniter Dev Team
33-
* @copyright 2014-2018 British Columbia Institute of Technology (https://bcit.ca/)
33+
* @copyright 2014-2019 British Columbia Institute of Technology (https://bcit.ca/)
3434
* @license https://opensource.org/licenses/MIT MIT License
3535
* @link https://codeigniter.com
3636
* @since Version 3.0.0

0 commit comments

Comments
 (0)