Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix count php 7.2 #602

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
vendor/*
composer.lock
phpunit.xml
.idea
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@ env: PHPAR_MYSQL=mysql://[email protected]/phpar_test PHPAR_PGSQL=pgsql://postgres@

language: php
php:
- 5.3
- 5.4
- 5.5
- 7.0
- 7.1
- 7.2
- nightly

matrix:
include:
- php: 5.3
dist: precise
- php: hhvm
dist: trusty
allow_failures:
Expand Down
6 changes: 4 additions & 2 deletions lib/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -1667,11 +1667,13 @@ public static function find_by_pk($values, $options)
}
$results = count($list);

if (!is_array($values))
$values = array($values);

if ($results != ($expected = count($values)))
{
$class = get_called_class();
if (is_array($values))
$values = join(',',$values);
$values = join(',',$values);

if ($expected == 1)
{
Expand Down
2 changes: 1 addition & 1 deletion lib/SQLBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public static function create_conditions_from_underscored_string(Connection $con
return null;

$parts = preg_split('/(_and_|_or_)/i',$name,-1,PREG_SPLIT_DELIM_CAPTURE);
$num_values = count($values);
$num_values = is_null($values) ? 0 : count($values);
$conditions = array('');

for ($i=0,$j=0,$n=count($parts); $i<$n; $i+=2,++$j)
Expand Down
3 changes: 3 additions & 0 deletions test/ModelCallbackTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ public function register_and_invoke_callbacks($callbacks, $return, $closure)

public function assert_fires($callbacks, $closure)
{
if (!is_array($callbacks))
$callbacks = array($callbacks);

$executed = $this->register_and_invoke_callbacks($callbacks,true,$closure);
$this->assert_equals(count($callbacks),count($executed));
}
Expand Down
4 changes: 2 additions & 2 deletions test/helpers/AdapterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -339,12 +339,12 @@ public function test_tables()

public function test_query_column_info()
{
$this->assert_greater_than(0,count($this->conn->query_column_info("authors")));
$this->assert_greater_than(0,count((array) $this->conn->query_column_info("authors")));
}

public function test_query_table_info()
{
$this->assert_greater_than(0,count($this->conn->query_for_tables()));
$this->assert_greater_than(0,count((array) $this->conn->query_for_tables()));
}

public function test_query_table_info_must_return_one_field()
Expand Down