Skip to content

Commit

Permalink
initial support
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Dec 27, 2023
1 parent 37cd39b commit 91fe313
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

namespace Rector\Tests\Php83\Rector\FuncCall\CombineHostPortLdapUriRector\Fixture;

class Fixture
{
public function run()
{
$ldapconn = ldap_connect('ldap://ldap.example.com', 389);
}
}

?>
-----
<?php

namespace Rector\Tests\Php83\Rector\FuncCall\CombineHostPortLdapUriRector\Fixture;

class Fixture
{
public function run()
{
$ldapconn = ldap_connect('ldap://ldap.example.com:389');
}
}

?>
Loading

0 comments on commit 91fe313

Please sign in to comment.