Skip to content

Commit 7dae482

Browse files
committed
Merge branch 'develop' into staging
2 parents d667a15 + 343d132 commit 7dae482

37 files changed

+53
-92
lines changed

application/config/application.php

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -94,19 +94,6 @@
9494

9595
'language' => 'en',
9696

97-
/*
98-
|--------------------------------------------------------------------------
99-
| Supported Languages
100-
|--------------------------------------------------------------------------
101-
|
102-
| These languages may also be supported by your application. If a request
103-
| enters your application with a URI beginning with one of these values
104-
| the default language will automatically be set to that language.
105-
|
106-
*/
107-
108-
'languages' => array(),
109-
11097
/*
11198
|--------------------------------------------------------------------------
11299
| SSL Link Generation

application/views/home/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<p>And the view sitting before you can be found at:</p>
3131

32-
<pre>{{ path('app') }}views/home/index.php</pre>
32+
<pre>{{ path('app') }}views/home/index.blade.php</pre>
3333

3434
<h2>Grow in knowledge.</h2>
3535

laravel/blade.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ public static function extend(Closure $compiler)
9595
*
9696
* @param string $view
9797
* @param string $path
98-
* @param string $compiled
9998
* @return bool
10099
*/
101100
public static function expired($view, $path)
@@ -106,7 +105,7 @@ public static function expired($view, $path)
106105
/**
107106
* Compiles the specified file containing Blade pseudo-code into valid PHP.
108107
*
109-
* @param string $path
108+
* @param string $view
110109
* @return string
111110
*/
112111
public static function compile($view)
@@ -168,6 +167,7 @@ function($matches) use (&$value)
168167
* Extract a variable value out of a Blade expression.
169168
*
170169
* @param string $value
170+
* @param string $expression
171171
* @return string
172172
*/
173173
protected static function extract($value, $expression)
@@ -403,6 +403,7 @@ protected static function compile_yields($value)
403403
/**
404404
* Rewrites Blade yield section statements into valid PHP.
405405
*
406+
* @param string $value
406407
* @return string
407408
*/
408409
protected static function compile_yield_sections($value)
@@ -468,7 +469,7 @@ public static function matcher($function)
468469
/**
469470
* Get the fully qualified path for a compiled view.
470471
*
471-
* @param string $view
472+
* @param string $path
472473
* @return string
473474
*/
474475
public static function compiled($path)

laravel/cache/drivers/driver.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ abstract public function put($key, $value, $minutes);
6767
* @param string $key
6868
* @param mixed $default
6969
* @param int $minutes
70+
* @param string $function
7071
* @return mixed
7172
*/
7273
public function remember($key, $default, $minutes, $function = 'put')

laravel/cache/drivers/memcached.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class Memcached extends Sectionable {
2020
* Create a new Memcached cache driver instance.
2121
*
2222
* @param Memcached $memcache
23+
* @param string $key
2324
* @return void
2425
*/
2526
public function __construct(\Memcached $memcache, $key)

laravel/cache/drivers/sectionable.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ public function forever_in_section($section, $key, $value)
6363
* @param string $key
6464
* @param mixed $default
6565
* @param int $minutes
66+
* @param string $function
6667
* @return mixed
6768
*/
6869
public function remember_in_section($section, $key, $default, $minutes, $function = 'put')

laravel/cli/tasks/help.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ class Help extends Task {
88
/**
99
* List available artisan commands.
1010
*
11-
* @param array $arguments
1211
* @return void
1312
*/
1413
public function commands()

laravel/cli/tasks/test/runner.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ class Runner extends Task {
1010
/**
1111
* Run all of the unit tests for the application.
1212
*
13+
* @param array $bundles
1314
* @return void
1415
*/
1516
public function run($bundles = array())

laravel/database/eloquent/model.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,7 @@ public function set_key($value)
567567
* Get a given attribute from the model.
568568
*
569569
* @param string $key
570+
* @return mixed
570571
*/
571572
public function get_attribute($key)
572573
{

laravel/database/eloquent/relationships/belongs_to.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@ public function eagerly_constrain($results)
7979
/**
8080
* Match eagerly loaded child models to their parent models.
8181
*
82-
* @param array $children
83-
* @param array $parents
82+
* @param string $relationship
83+
* @param array $children
84+
* @param array $parents
8485
* @return void
8586
*/
8687
public function match($relationship, &$children, $parents)

0 commit comments

Comments
 (0)